mod rewrite:处理子域,顶级域和查询字符串

时间:2013-07-24 22:15:31

标签: .htaccess mod-rewrite

我想将[subdomain.]example.TLD[/?query_string]之类的任何网址统计重定向到example.org[/?query_string]

以下规则集各有效,但不能合并。 即www.example.com => example.org example.com/?query_string => example.org/?query_string

RewriteEngine On

RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^(.*)$ http://example.org/$1?%{QUERY_STRING} [R=301,L]

RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]

1 个答案:

答案 0 :(得分:0)

您只需要一条规则,因为QUERY_STRING会在重定向后自动复制到。

RewriteCond %{HTTP_HOST} !^example\.org$ [NC]
RewriteRule ^ http://example.org%{REQUEST_URI} [R=301,L]