apachehttp-redirectmod-rewritesubdomainwildcard-subdomain

Apache rewrite based on subdomain


I'm trying to redirect requests for a wildcard domain to a sub-directory.
ie. something.blah.example.com --> blah.example.com/something

I don't know how to get the subdomain name to use in the rewrite rule.

Final Solution:

RewriteCond %{HTTP_HOST} !^blah\.example\.com
RewriteCond %{HTTP_HOST} ^([^.]+)
RewriteRule ^(.*) /%1/$1 [L]

Or as pointed out by pilif

RewriteCond %{HTTP_HOST} ^([^.]+)\.blah\.example\.com$

Solution

  • You should have a look at the URL Rewriting Guide from the apache documentation.

    The following is untested, but it should to the trick:

    RewriteCond %{HTTP_HOST} ^([^.]+)\.blah\.domain\.com$
    RewriteRule ^/(.*)$           http://blah.domain.com/%1/$1 [L,R] 
    

    This only works if the subdomain contains no dots. Otherwise, you'd have to alter the Regexp in RewriteCond to match any character which should still work due to the anchoring, but this certainly feels safer.