0

ドメインtest.comとサブドメインがありますsub.test.com

sub.test.comここで、URLをに書き換える必要があり、URL はとにtest.com/?state=subsub.test.com/content/ています。test.com/content/?state=subsub.test.com/content/proceed/test.com/content/proceed/?state=sub

最初の URL のルールは次のように機能しました。

RewriteCond %{HTTP_HOST} !^www\.test\.com
RewriteCond %{HTTP_HOST} !^webmail\.test\.com
RewriteCond %{HTTP_HOST} !^m\.test\.com
RewriteCond %{HTTP_HOST} ([^.]+)\.test\.com
RewriteCond %{REQUEST_URI} !^/index\.php$
RewriteCond %{REQUEST_URI} !robots.txt.*
RewriteRule  ^$ http://www.test.com/?state=%1 [P]

これを行う方法はありますか?

4

1 に答える 1

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]
于 2013-11-04T15:30:44.610 に答える