What I'm trying to do is rewrite a few of the words in my URL from an old project module so that they look applicable to the current project.
The URL I am starting with is:
http://WEBSITE.com/stories/topic/view/pet_id/6/topic_id/41
What I have in .htaccess is:
# Change Pet and Topic to Story and Chapter
RewriteCond stories/topic/view/pet_id/([A-Za-z0-9-]+)/topic_id/
RewriteRule stories/topic/view/pet_id/6/topic_id/.*$ stories/chapter/view/story_id/6/chapter_id/$1
Didn't add a part for the number on the end to conditions, since i really only needed the words changed up to that point. Not sure if that is okay or not either.
Not sure what I'm not wrong, and hope one of the mod_rewrite gurus out there can help me out. Thanks!