我已经使用 .htaccess 进行了 301 重定向以重定向http://domain.com
到http://www.domain.com
,我就是这样做的。
Options +FollowSymlinks
RewriteEngine on
<IfModule mod_rewrite.c>
Rewritecond %{http_host} ^domain.com [nc]
Rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
</IfModule>
我几个月前写过这段代码,到目前为止它工作得很好,但现在突然间它在浏览器历史记录中显示了两个 url,同时正确重定向,
1st url is http://domain.com
2nd url is http://www.domain.com
我删除了该行Options +FollowSymlinks
,但它仍然显示两个 url。
请建议为什么我在浏览器历史记录中获得两个 url,而我应该只获得重定向的 url。
谢谢