0

我可以使用以下代码将我的网站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 的解决方案?

4

1 回答 1

0

试试:

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
于 2013-11-07T16:31:47.920 回答