Someone could help me to make a match-rule for my .htaccess ?
I would like that the old urls indexed on search-engines like:
http://www.domain.com/watch.php?id=ANY_ID
redirects automagically to:
http://www.domain.com/watch/ANY_ID
EDIT:
I tried this:
RewriteEngine On
RewriteRule ^watch/([^/]*)$ /watch.php?id=$1 [L]
and this:
Options +FollowSymLinks
RewriteEngine on
RewriteRule watch/(.*) watch.php?id=$1
But is not working for me.