|
在织梦dedecms的程序中,其实也有一些重复的页面,想要优化URL,这样的情况是不可能存在的,就比如你列表页的第一页,www.localhost.com/xinwenzhongxin/index.html,但是生成之后也会出现www.localhost.com/xinwenzhongxin/list_1_1.html,所以这样就会对优化存在很大的问题。修改的方法:
1、找到\include\arc.listview.class.php这个文件,将
$typedir= ereg_replace('{cmspath}',$GLOBALS['cfg_cmspath',,$this->Fields['typedir',);;
这段代码添加到”//获得上一页和主页的链接”前面;
2、找到下面几行代码(就在”//获得上一页和主页的链接”下面)
if($this->PageNo != 1)
{
$prepage.="[*,[url=".str_replace("{page}",$prepagenum,$tnamerule).",上一页[/url]\r\n";
$indexpage=”[*,[url=".str_replace("{page}",1,$tnamerule).",首页[/url]\r\n";
}
改成:
if($this->PageNo != 1)
{
if($prepagenum==1)
{
$prepage.="[*,[url=,上一页[/url]\r\n";
}
else
{
$prepage.="[*,[url=,上一页[/url]\r\n";
}
$indexpage="[*,[url=,首页[/url]\r\n";
}
3、找到
$listdd.="[url=".str_replace("{page}",$j,$tnamerule).",".$j."[/url]\r\n";
改成:
if($j==1)
{
$listdd.="[*,[url=,".$j."[/url]\r\n";
}
else
{
$listdd.="[*,[url=,".$j."[/url]\r\n"; |
|