如果未指定特定文件夹,我将如何进行mod_rewrite重定向到diffent子域?例如:
到目前为止我已经
了ReWriteCond %{HTTP_HOST} =test.example.com [NC]
ReWriteRule ^ http://redirect.example.com [L,R]
不确定用于用户目录的条件
答案 0 :(得分:0)
您可以添加另一个排除特定文件夹的ReWriteCond:
RewriteCond %{REQUEST_URI} !^/(~user|/.*)$
ReWriteCond %{HTTP_HOST} test.example.com [NC]
ReWriteRule ^$ http://redirect.example.com [L,R]
和你应该删除其他ReWriteCond中的'='。