Michał Miszczyszyn
Michał Miszczyszyn

Reputation: 12711

Apache RewriteCond (subdomain)

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

Answers (1)

M'vy
M'vy

Reputation: 5774

Rule should look like :

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

Upvotes: 7

Related Questions