I recently did the 301 redirect to get my non
www. pages to
www. pages...and it works fine...all the search engines are now updating to the
www. version.
however a problem from this is now all my subdomains are directing to their respective directories..
for example:
hotshots.mysite.com redirects to
www.mysite.com/hotshots
how on earth do I fix this?
My .htaccess code is for the redirect is:
Code:Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^.*mysticalwonders\.org [NC]
RewriteRule (.*) http://www.mysticalwonders.org/$1 [R=301,L]
RewriteCond %{HTTP_HOST} !^www\.mysticalwonders\.org
RewriteRule (.*) http://www.mysticalwonders.org/$1 [R=301,L]