织梦DEDECMS有比较强大的TAG功能,但是它的tag/1690/" target="_blank">标签TAG功能较差,不利于seo优化,同时也有很多问题,比如:当前页不存在上一页时,链接为“-1”的问题,还有出现+ O l N )&l_ { K 3 u :dquo;系统无此标签,可能已经移除”的问题。梦飞在网上找了好k T ` / G x多教程,但都无法成功实, 8 2 B 3 | J J现在LINUX环境下的rewrite规则标签分页伪静态,特安装了CentOS7系统,在LAMP系统PHP7环境下,用DEDECMS 5.7sp2测试出正确的方法,把9 o Y F r B标签伪静态分页方法分享给大家(部分资料来源于网络),同时也修复了一些上述提到的BUG。
为节约各位站长时间,可以先看梦飞的演示网站 http://www.scmsky.comG W 4 = H A 3 R 5/tags.php 是不是自己想要的效果,再往下看,谢谢。
1.修改织梦前台显示链接
这里达到的效果就是使原来/tags.php?keywors更改为/tags/keywords.html。
这里主要4 6 b P 2 C J -修改下调用的标签,在/include/taglib/tag.lib.php中,在87行找到
$row['link'] = $cfg_cmsurl."/* 7 ] i h h vtags?".urlencodet ( e + A = = 7 D($row['keyword']);
将其修改为:
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html";
2.修改分页代码部分
这部分修改是关键,一是解决bug,二是和rewrite配套实现dedecms分页伪静态显示。V \ s & e X a J 0
我们需要修改i* B f u v b l A Xnclude/arc.taglist.$ B [ K $ + d wclass.php,找到分页函数,大概位于429行,您可以细心修改,也可以直接将其替换为:
/**
* 获取动态的分页列表
*
* @access public
* @pa+ $ 8 ( s 8 % * Vram &nbsa 7 q : T ,p; int $list_len 列表宽度
* @param string $listitem 列表样式
* @return &nb8 W h Q l X ? }sp; string
*/
function GetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno")
{
$prepage="";
$nextpage="";
$prepagenum = $this->PageNo - 1;
$nextpagenum = $this->PageNo + 1;
iv W b 4 { t ) Df($list_len == "" || preg_match("/[^0-9]/", $list_len))
{
$list_len = 3;
}
$totalpage = $this->Totan = a PlPage;
if($totalpage <= 1 && $this->TotalResult > 0)
{
F M 5 return "<spa^ + Z S h I s 7n c# 9 { u d D _lass="pageinfo">共1页/".$this->TotalResult."条</span>";
}
if($this->TotalResult == 0)
{
&I [ f gnbsp; return "<span class="pageinfo">共0页/".$this->TotalRes_ . % X ] j L )ult."条</span>";
&nb^ | @ ? s K H l +sp;}
$maininfo = "<span class="pageinfo">共{$totalpage}页/".$this->TotalResult."条</span>rn";
$purl = $this->GetCurUrl();
$basename = basename($purl);
$tmpname = expl~ v | t { Kode('.', $basename);
$purl = str_replace($basename, '', $purl).urlencode($this->Tag);
//var_dump($purl);exit;&nbO v ?sp;
//$purl .= "?/".urleL y u c n 5 Nncode($this->Tag); //获得上一页和下一页的链接
/) H T/if($this-&4 \ ! . 1 cgt;PageNo != 1) 这是修正上一页为负数的问题,梦飞,} 3 _ c2021-02-25
if_ _ 0 / # C % ;($this->PageNo != 1 && $this->PageN$ / (o != "")
{
$prepage.="<lik u w 4 ? M 0 J><a href='".$purl."-$prepagenum.html'>上一页</a></li>rn"; &nbt z u * 1 D V B Zsp;//注意这里的修改,梦飞,2021-02-25
$ind# c *expage="<li><a href. 6 l .='".$purl."-1.` x ; Z ^ s j 0 5htm= ! M 8 H ! 6l'>; 9 C 3首页</a><Y } V [ V C %/li>rn"; &5 n L Hnbsp;//注意这里的修改,梦飞,2021-02-25
}
else
{
$indexpagM & c F L d ne="<li><a>首页</a></li>rn";
}
&nP u 1 ! ) r f i Kbsp;if($this->PageNo!=$totalpage && $totalpage>1)
{
$nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一页</a><@ , D m m H % D Y;/li>rn"; //注意D a E e ^ j这里的修改,梦飞,2021-02-25
$endpage="<li>^ R 7 b D E @ 7<a hr; 1 [ef='".$purl."-$totalpage.html'>末页</a></l{ R m Ji>rn"; //注意这里的修改,梦飞,2021-02-22 M ^5
}
&nW / Zbsp;else
{
$endpage="&u 9 e P s * * y Vlt;li><a>末页</a>&lm # P y o % L h Wt;/li>rn";
}//获x X B 2得数字链接
$listddh x { n a O v @="";
$total_list = $list_len * 2 + 1;
if($t) | ^his->PageNo >v g 1 2;= $total_list)
{
$j = $this->PageNo - $list_len;
$total_list = $this-t t 7 R o>PageNo + $list_len;
if($total_list > $totB A y K w $ 4 x Balpage)
{
$total_list =7 . R ) M . l B $totalpage;
}
}
else
&nbs] P K k .p;{
$j=1;
if($total_list &N Y t ` c g =gt; $totalpa/ \ ( Age)
&nQ R \bsp; {
&nbs9 0 I 3 C j ? lp; $total_list = $total7 Y v Z ]pageq # = . 6 c p;
}
3 # \ Y Y K E A x}
for($j; $j<=$total_list; $j++)
{
if($j == $this->PageNo)
{
$^ M Qlistdd.= "<li class="thisclass">&y 5 J H f @ % Flt;a>: y ];$j</a></li>rn";
}
else
{
$listdd.="<li&g] 7 Z K 5 4t;<a href='".$purl."-$j.html'>".$j."</a></\ b = 1 @li&gC _ t T \ : f `t;rn"; //注意这里的修改,梦飞,2021-02-25
}
}
$p= & Clist = '';
if(preg_match('/infod 9 7/i', $listitem)a o = j G Y)
{
$plist .= $maininfo.' ';
}
 - h S S q 7 A;if(preg_match('z b j B R K F `/index/i', $listitem))
{
$plist .= $indexpage.' 'd _ # T q 4 j ,;
}
if(preg_match('/pre/i', $li: T r e V { @stitem))
&, - _ O 9 n e + 1nbsp;{
$plist .= $prepage.' ';
}
if(preg_match('/pageno/i', $listC , N ( u `item))
{
$plist .Q 8 Q D N { &=9 _ { $listdd.' ';
}
&n( N $ +bsp;if(preg_match('/next/i', $listitem))
{
$plist .= $nextpage.' ';
}
if(preg_match('/end/i', $listitem))
&nbQ _ d I r * + 7 Xsp;{
$plist .= $endpage.' ';
}
return $plio z , v Y _st;
}
3.设置伪静态规则
注意这个伪静态一定要和上面的代码配套,不要把网上的教程里面的方法混合使用,那样多半不成功
我们这里以CentOS7和dedecms 5.7为例子,设置.htacce5 M w l # H u t Lss以下规则:
RewriteEngine On
RewriteBase /
RewriteRF | j V ~ule tags/([^-]+).html$ /tags.php?/$1
RewriteRule tags/([^-]+)-([0-9]+).html$ /tags.php?/$1/$2
如果是iis7,设置以- q \下规则:
<?xml versy f eion="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer> D [ 8
<rewrite>
<rules>
<rule named d ; W ; F : I L="weather1" stopProcessing="true"> d / $;
<m7 b v ! e \ \atch url="tags/([^-]+).html$" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" match5 ` w 2 ] X x d OType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" nN % I T ) Legate="true" />
</conditions>&n: i 9 $bsp;
<action type="R~ R L 4 ` Wewrite" url="/tags.php?/{R:1}" ay h : W P s ; ; vppendQueryString="false" />
</rule>
<rule name="weather2" stopProcessing="true">
<match url="tags/([^-]+)-([0-9]+).html$" ignoc : D 9 = k R 6 @reCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
&S ; } X - \lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory"d A \ # t nJ ) X yegate="true" />
<c ^ h/conditions>
<W U + H w ^;action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" />
</rule>
</rules>
</rewrite> @ = l )
</system.webServer>
</configuration>- $ 5 w
4、好了,至此就搞定了。演示可以看 http://www.scmsky.com/tags.php 南华中天官- s 7 M m [网,谢谢。