Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wish to redirect an entire domain except for 1 subdomain to another site.

I'm trying to get:

http://domain.com

http://www.domain.com

to redirect to another website/domain.

I want subdomain.domain.com to remain unaffected.

So far I have only managed to get either the www or the non www versions to redirect but not both at the same time.

Any assistance would be much apreciated.

share|improve this question

1 Answer

up vote 0 down vote accepted
RewriteEngine On
RewriteCond %{HTTP_HOST} !^subdomain\.domain\.com
RewriteRule ^(.*)$ http://www.another-domain/$1 [R=301,L]
share|improve this answer
That worked, many thanks :) – Jargonaut Feb 24 '12 at 22:33

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.