I need help with the correct 301 redirect for the following please- From- [COLOR=#282828][FONT=helvetica]URL/forums/tags/bbc.html[/FONT][/COLOR] Code (markup): to- [COLOR=#282828][FONT=helvetica]URL/forums/tags/forums/bbc/[/FONT][/COLOR] Code (markup): Obviously the end bbc.html could change depending on the tag being searched. does anyone know the code to enter in the .htaccess file to do this. ? thanks chris
RewriteEngine On RewriteBase / RewriteRule ^forums/tags/([^/]+).html$ /forums/tags/forums/$1/ [R=301,L] Code (markup): Place the above code into your .htaccess file in main html folder, and that's it. If you already have some rewrite rules in your .htaccess file then just skip the first two lines of my code and paste the third line. Cheers.