- 时间:2020-07-21 10:38 编辑: 来源: 阅读:193
- 扫一扫,手机访问
摘要:用织梦DedeCms搭建网站,一般访问首页的时候,他会跳转至带有index.html的页面上,这样对网站权重传递方面会造成一些影响。我们可以通过修改代码实现不跳转至index.html页面。编辑打开include/channelunit.func.php页面查找 $reurl = $typedir.’/’.$defaultname;替换成 $reurl = $typedir.’/’;修
用织梦DedeCms搭建网站,一般访问首页的时候,他会跳转至带有index.html的页面上,这样对网站权重传递方面会造成一些影响。我们可以通过修改代码实现不跳转至index.html页面。
编辑打开include/channelunit.func.php页面
查找
$reurl = $typedir.’/’.$defaultname;
替换成
$reurl = $typedir.’/’;
修改完成后就不会再跳转至index.html页面了。