this is my .htaccess (which works perfectly and redirects perfectly
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.diabeteschat.org/forum/$1 [R=301,L]
i tried to add this at the end of it to redirect a page that is out of date and google has indexed
Code:
Redirect 301 /forum/viewtopic.php?f=24&p=13 http://www.diabeteschat.org/forum/showthread.php?t=9
so my .htaccess looks like this now
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.diabeteschat.org/forum/$1 [R=301,L]
Redirect 301 /forum/viewtopic.php?f=24&p=13 http://www.diabeteschat.org/forum/showthread.php?t=9
the top redirect works still but the redirect 301 i added later doesnt work...any ideas how to fix this? did i do it wrong?