我有一个域test.com
和一个子域sub.test.com
。
现在,我需要将网址sub.test.com
重写为test.com/?state=sub
,将sub.test.com/content/
改为test.com/content/?state=sub
,将sub.test.com/content/proceed/
改为{{1} }。
第一个网址的规则有效,如下所示:
test.com/content/proceed/?state=sub
知道怎么做吗?
答案 0 :(得分:0)
此规则适用于您:
RewriteCond %{HTTP_HOST} !^(?:www|webmail|m)\.test\.com$ [NC]
RewriteCond %{HTTP_HOST} ([^.]+)\.test\.com$ [NC]
RewriteCond %{REQUEST_URI} !^/(index\.php|robots\.txt) [NC]
RewriteRule ^ http://www.test.com%{REQUEST_URI}/?state=%1 [P]