Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I guess you need ^ and not ! which is a NOT statement: RewriteCond %{HTTP_HOST} ^oldexample.com$ [NC] You also need to add http://www.newexample.com/newlocation/ to the rewrite rule – Bjørne Malmanger Jan 31 at 23:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.