Apache从非www重定向到www我有一个网站,似乎不重定向从非www到www。我的Apache配置如下:RewriteEngine On
### re-direct to www
RewriteCond %{http_host} !^www.example.com [nc]
RewriteRule ^(.*)$ http://www.example.com/$1 [r=301,nc]我遗漏了什么?
添加回答
举报
0/150
提交
取消