Mobile app version of vmapp.org
Login or Join
Angela700

: Seeking .htaccess help: Converting multiple subdomains (both HTTP and HTTPS) to www.domain.com using .htaccess I've been trying to get an answer to this question on other forums (the folks at

@Angela700

Posted in: #Apache #Htaccess #Https #Redirects #Subdomain

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 ^(.*)$ www.mysite.com/ [R=301,L]

RewriteCond %{HTTP_HOST} ^subdomain2.mysite.com$ [NC]
RewriteRule ^(.*)$ www.mysite.com/ [R=301,L]

RewriteCond %{HTTP_HOST} ^subdomain3.mysite.com$ [NC]
RewriteRule ^(.*)$ www.mysite.com/ [R=301,L]


This works great until someone goes to:
subdomain2.mysite.com$
which is not redirected back to 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 www.mysite.com$ to 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?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Angela700

1 Comments

Sorted by latest first Latest Oldest Best

 

@Frith620

About not repeating for each subdomain - shouldn't this work?

RewriteCond %{HTTP_HOST} ^.+.mysite.com$ [NC]
RewriteRule ^(.*)$ www.mysite.com/ [R=301,L]

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme