共计 519 个字符,预计需要花费 2 分钟才能阅读完成。
经常会碰到这样的情况,其他网站链接你的站点时,会用下面的链接:
www.example.com
example.com/
www.example.com/index.html
example.com/index.php
而这样导致:你站点主域名的 pr 值分散到其他几个 URLs 了。
如果你用 301 重定向把其他三个 URL 转到
www.example.com
PR 也就集中在主域名:www.example.com 了。
301 重定向具体办法:
设置.htaccess 文件(只适用于 linux 系统,并需要虚拟主机支持。)
使访问 example.com/ 的时候就会自动转到 www.example.com
在.htaccess 文件里写上以下代码即可。
RewriteEngine on
RewriteCond %{http_host} ^mydomain.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]
注意:URL 标准化的 301 重定向(以上代码)需要写在其他 URL-rewrite 代码之前。
以上就是 301 重定向怎么进行 URL 标准化设置的详细内容,更多请关注王尘宇博客其它相关文章!
丸趣 TV 网 – 提供最优质的资源集合!
正文完