htaccess将http://subdomain.example.com重定向到www.subdomain.example.com

时间:2013-11-07 16:29:47

标签: .htaccess mod-rewrite url-rewriting

我可以使用以下代码将我的网站http://example.com重定向到www.example.com。

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

但是没有获得http://subdomain.example.com到www.subdomain.example.com的解决方案?

1 个答案:

答案 0 :(得分:0)

尝试:

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