Seeking .htaccess help: Converting multiple subdomains (both HTTP and HTTPS) to www.domain.com using .htaccess
Posted
by
Joshua Dorkin
on Pro Webmasters
See other posts from Pro Webmasters
or by Joshua Dorkin
Published on 2012-10-17T21:08:21Z
Indexed on
2013/11/10
4:15 UTC
Read the original article
Hit count: 357
I've been trying to get an answer to this question on other forums (the folks at SuperUser thought this was the place I needed to post) and via my connections, but I haven't gotten very far. Hopefully you guys can help me find an answer.
I've got a dozen old subdomains that have been indexed by Google. These have been indexed as both HTTP AND HTTPS.
I've managed to redirect all the subdomains properly, provided they are not HTTPS, but can't get any of the HTTPS subdomains to property redirect.
Here's the code I'm using:
RewriteCond %{HTTP_HOST} ^subdomain1.mysite.com$ [NC]
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^subdomain2.mysite.com$ [NC]
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^subdomain3.mysite.com$ [NC]
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
This works great until someone goes to:
https://subdomain2.mysite.com$
which is not redirected back to http://www.mysite.com$
How can I get this to work? Additionally, I'm guessing there is an easier way to make it happen than setting up a dozen pairs of RewriteCond
/RewriteRule
? Is there any way to do this in just a few lines, including one where I list all the subdomains?
I'd actually also like to redirect everything on https://www.mysite.com$
to http://www.mysite.com$
except for 3 folders.
These are mysite.com/secure
, mysite.com/store
, mysite.com/user
. Is there any good way to add this to the .htaccess file?
© Pro Webmasters or respective owner