我正在尝试将通配符域的请求重定向到子目录。
IE。something.blah.example.com
-->blah.example.com/something
我不知道如何获取要在重写规则中使用的子域名。
最终解决方案:
RewriteCond %{HTTP_HOST} !^blah\.example\.com
RewriteCond %{HTTP_HOST} ^([^.]+)
RewriteRule ^(.*) /%1/$1 [L]
或者正如 pilif 所指出的那样
RewriteCond %{HTTP_HOST} ^([^.]+)\.blah\.example\.com$