I have an .htaccess file with some rewrite rules in it. Here is a sample line: RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/pages\.html$ pages.php?pID=$1 [QSA,L] Code (markup): I want to 301 redirect the old URLs to the new, rewritten URLs. I added R=301 but that is not working. What am I doing wrong?
I did this: ...but it didn't work... I'm not sure how to get it to redirect, or if it's even possible.