关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

带/index.php的主域名301重定向到默认主域名

发布时间:2020-11-13 19:04:13

最近有网友碰到网站被百度收录了带/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换成需要跳转的域名地址)

参考以上给自己的伪静态做修改



/template/Home/D8Cloud/PC/Static