.htaccess 301从主域重定向到子域

时间:2015-03-17 10:55:50

标签: .htaccess

我应该在.htaccess中将所有链接从主域重定向到子域?我喜欢它,但它并不是在炒作:

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

1 个答案:

答案 0 :(得分:1)

你是否在第一行没有http:///的情况下尝试过?

RewriteCond %{HTTP_HOST} ^example.com$  [OR]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^(.*)$ http://subdomain.example.com/$1 [R=301,L]