I need to redirect all pages on the old site to all pages on new site except the homepage. i.e. index.php Presently I am redirecting all pages, but don't know how to add that exception for homepage.. RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Code (markup):
! means not in regex. Thusly you can add a rewrite rule to exclude results that match the regex followed by the !
You could add a line before rewrite RewriteEngine on RewriteRule ^index.html$ index.html [R=301,L] RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]