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