Forum Moderators: phranque
Options +FollowSymLinks
RewriteEngine on
RewriteBase /interviews
RewriteRule ^(.*)/$ index.php?title=$1
Now say I have this url: domain.com/interviews/example_url/
which I want to re-direct 301 to: domain.com/interviews/new_url/
----------------------
I've tried using:
redirect 301 /example_url/ [domain.com...]
But this only results in:
[domain.com...]
As its being affected by the top bit of code.
Any ideas of how I can do this?