最近有网友碰到网站被百度收录了带/index.php的主域名,举个栗子:百度同时收录了www.d8cloud.cn和www.d8cloud.cn/index.php,这种情况可能会造成www.d8cloud.cn权重被稀释,因此我们就需要做下301重定向,Apache服务器支持.htaccess可以使用以下方式:
用301将index.html、index.php等重定向到主域名
RewriteEngine on RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ http://www.d8cloud.cn/ [R=301,L] (www.pbhtml.com换成需要跳转的域名地址)
参考以上给自己的伪静态做修改