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

I'd like to redirect all URLs not containing www to www

I used this: RewriteCond %{HTTP_HOST} !^www.mydomain.com$ RewriteRule ^(.*) http://www.mydomain.com$1 [QSA,L,R=301]

Now I need one subdomain not to be redirect like this, or I get an error...

So I'd like to redirect any URL that does not begin with sub or with www to www.mydomain.com

How can I do this ? thanks

share|improve this question

1 Answer

You need a second RewriteCond. You can apply as many as you like to a RewriteRule.

Assuming anything that is not sub.mydomain.com needs to be www.mydomain.com, here is your code:

RewriteCond %{HTTP_HOST} !^sub.mydomain.com$
RewriteCond %{HTTP_HOST} !^www.mydomain.com$
RewriteRule ^(.*) http://www.mydomain.com$1 [QSA,L,R=301]

But you can simplify this further using the pipe (|) character in Regex:

RewriteCond %{HTTP_HOST} !^(sub|www).mydomain.com$
RewriteRule ^(.*) http://www.mydomain.com$1 [QSA,L,R=301]
share|improve this answer
thanks for that, but it tells me that too many redirects are happening and refuses to open the page... Maybe it's also because before that I'm doing other rewrite for any domain alias to go to main domain ? Example: www.do-main.com goes to www.domain.com. These ones I write explicitly... – Stéphane Balet Aug 7 '12 at 7:44
ok, i found it. in your rule, I think the % should be outside the { – Stéphane Balet Aug 7 '12 at 8:36
Fixed. Sorry, I was very tired. – Scott S Aug 7 '12 at 12:49

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.