a site that i look after has 4 subdomains but the subdomains are
www.subdomain.domain.com
the other sites that I look after all the subdomains are all non www.
this is what I have in my htaccess file for the site that redirects the non subdomains properly
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.domain\.com [NC]
RewriteCond %{HTTP_HOST} !^www\.subdomain\.domain\.com [NC]
RewriteCond %{HTTP_HOST} !^www\.subdomain1\.domain\.com [NC]
RewriteCond %{HTTP_HOST} !^www\.subdomain\2.domain\.com [NC]
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
what can I add so that the www subdomains redirect properly.
Thanks in advanced.
Robert