Reputation: 12711
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.
Upvotes: 3
Views: 4725
Reputation: 5774
Rule should look like :
RewriteCond %{HTTP_HOST} ^xxx.domain.com
RewriteRule (.*) http://domain.com/$1 [L]
Upvotes: 7