I've been asked to set up a redirect for my work's website from sub.domain.com/ (an index.html file) to newdomain.com/newlocation/
After Googling around and researching here on stackoverflow, I believe that it should look similar to this. All I need to do is make sure that when someone types in sub.domain.com/, they're taken to the new page. However I want to ignore http requests if they're something like sub.domain.com/contact-us, etc. So only the root index.html if that makes any sense.
RewriteEngine On
RewriteCond %{HTTP_HOST} !oldexample.com$ [NC]
RewriteRule ^(.*)$ http://www.newexample.com/$1 [L,R=301]
I'd really appreciate any tips you can give. I've never worked with htaccess before and Apache is still fairly new to me. Thanks.
^and not!which is a NOT statement:RewriteCond %{HTTP_HOST} ^oldexample.com$ [NC]You also need to addhttp://www.newexample.com/newlocation/to the rewrite rule – Bjørne Malmanger Jan 31 at 23:26