Apache RewriteCond (subdomain)

2019-05-14 19:22发布

问题:

I am trying to redirect request for a subdomain to main domain. ie: xxx.domain.com/blah/xyz --> domain.com/blah/xyz

My rewriteconds work fine for xxx.domain.com but for anything like xxx.domain.com/123/xyz 400 Bad Request is all I get…

Any help will be appreciated.

回答1:

Rule should look like :

RewriteCond %{HTTP_HOST} ^xxx.domain.com
RewriteRule (.*) http://domain.com/$1 [L]