最近收录的时候发现,域名根目录下index.html index.php都在收录结果当中,最终变成了www.5013.org www.5013.org/index.php www.5013.org/index.html都收录了;
有同仁的说法是这样会由于多页面相似度太高,以及入口分散造成权重分散
所以……
现将解决办法分享如下:
RewriteCond %{HTTP_HOST} ^www.5013.org$
RewriteRule ^index.php$ http://www.5013.org/$1 [R=301]
RewriteRule ^index.html$ http://www.5013.org/$1 [R=301,L]
Rewrite标志
R[=code](force redirect) 强制外部重定向
[L] 停止重写操作,并不应用到其他重写规则