我可以使用以下代码将我的网站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的解决方案?
答案 0 :(得分:0)
尝试:
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]