Hello, I want to redirect all the file who start with an a on my site to an other site, would this code work? Redirect /a$ www.newsite.com Thanks for your help! Best regards,
Make sure you enable mod_rewrite RewriteEngine on RewriteRule ^([a]{1,1}.*?)$ http://www.newsite.com/$1 [R=301,L] Code (markup):