dede的栏目列表分页链接,仔细观察会发现,在栏目的首页会存在两个内容相同的2个不同url: 一个是在其他页面链接的栏目首页url是www.xxx.com/lanmu1/index.html 另一个是栏目的分页给的链接URL是:www.xxx.com/lanmu1/list_1_1.html
从SEO方面来说,是不太友好的,所以,本文就是针对这个问题,把两个URL统一成index.html
1,找到\include\arc.listview.class.php这个文件,将 $typedir= ereg_replace('{cmspath}',$GLOBALS['cfg_cmspath'],$this->Fields['typedir']); 这段代码添加到”//获得上一页和主页的链接”前面; 2,找到下面几行代码(就在”//获得上一页和主页的链接”下面)
if($this->PageNo != 1)
{
$prepage.="<li><a rel="nofollow noopener noreferrer" href='".str_replace("{page}",$prepagenum,$tnamerule)."'>上一页</a></li>\r\n";
$indexpage=”<li><a rel="nofollow noopener noreferrer" href='".str_replace("{page}",1,$tnamerule)."'>首页</a></li>\r\n";
}
改成: if($this->PageNo != 1)
{
if($prepagenum==1)
{
$prepage.="<li><a rel="nofollow noopener noreferrer" href=\&;".$typedir."/\&;>上一页</a></li>\r\n";
}
else
{
$prepage.="<li><a rel="nofollow noopener noreferrer" href=\&;".str_replace("{page}",$prepagenum,$tnamerule)."\&;>上一页</a></li>\r\n";
}
$indexpage="<li><a rel="nofollow noopener noreferrer" href=\&;".$typedir."/\&;>首页</a></li>\r\n";
} 3.找到 $listdd.="<a rel="nofollow noopener noreferrer" href='".str_replace("{page}",$j,$tnamerule)."'>".$j."</a>\r\n"; 改成: if($j==1)
{
$listdd.="<li><a rel="nofollow noopener noreferrer" href=\&;".$typedir."/\&;>".$j."</a></li>\r\n";
}
else
{
$listdd.="<li><a rel="nofollow noopener noreferrer" href=\&;".str_replace("{page}",$j,$tnamerule)."\&;>".$j."</a></li>\r\n";
} 只需要三步就完成了。但我发现这样做完有一个站出现了问题,如下图:
本文织梦dede栏目列表分页URL链接首页与第一页重复如何解决办法到此结束。自己付出了,就不要后悔失去了那份感情,没有一个人一生只谈恋爱不做其他事情,也许就在你转身的时候,她离开了你,这样的事情是无法避免的,每天都在发生。不要相信那些爱情小说,因为我们是生活在现实中,而不是童话里,没有谁会等谁一辈子。小编再次感谢大家对我们的支持!