您好,欢迎来到菜鸟吧源码网(www.cniao8.com)本站只做精品网站源码!
  • 首 页
  • 菜鸟云
  • 公告:本站资源均来源于互联网及会员投稿发布,所有资源仅供学习参考研究使用,请勿商用或其它非法用途,商用请购买正版,否则产生一切后果由用户自行承担!谢谢!

     

    当前位置:主页 > 站长学堂 > dede教程 >
    DedeCMS系统TAG标签和分页伪静态设置教程
    时间:2020-08-07 10:47 作者:菜鸟吧 浏览:收藏 挑错 打印

    现在好多CMS系统都有TAGS标签这项功能,知名的DEDECMS也有,但是它的标签功能很差,不利于seo优化,同时也有很多问题,比如:当前页不存在上一页时,链接为“-1”的问题,还有出现“系统无此标签,可能已经移除”的问题。

    今天dede58.com小编就教大家把标签伪静态(部分资料来源于网络),同时也修复了一些上述提到的BUG。

    1.修改前台显示链接

    我们这里达到的效果就是使原来/tags.php?keywors更改为/tags/keywords.html。

    这里主要修改下调用的标签,在/include/taglib/tag.lib.php中,在87行找到

    $row['link'] = $cfg_cmsurl."/tags?".urlencode($row['keyword']);  

    将其改为:

    $row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html";

    2.修改分页代码部分

    我们需要修改include/arc.taglist.class.php,找到分页函数,将其替换为:

    001Copy to ClipboardLiehuo.Net Codes引用的内容:[www.dede58.com]
    002/**
    003* 获取动态的分页列表
    004*
    005* @access public
    006* @param int $list_len 列表宽度
    007* @param string $listitem 列表样式
    008* @returnstring
    009*/
    010functionGetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno")
    011{
    012$prepage="";
    013$nextpage="";
    014$prepagenum = $this->PageNo - 1;
    015$nextpagenum = $this->PageNo + 1;
    016if($list_len == ""|| preg_match("/[^0-9]/", $list_len))
    017{
    018$list_len = 3;
    019}
    020$totalpage = $this->TotalPage;
    021if($totalpage <= 1 && $this->TotalResult > 0)
    022{
    023return"<span class=\"pageinfo\">共1页/".$this->TotalResult."条</span>";
    024}
    025if($this->TotalResult == 0)
    026{
    027return"<span class=\"pageinfo\">共0页/".$this->TotalResult."条</span>";
    028}
    029$maininfo = "<span class=\"pageinfo\">共{$totalpage}页/".$this->TotalResult."条</span>\r\n";
    030$purl = $this->GetCurUrl();
    031$basename= basename($purl);
    032$tmpname = explode('.', $basename);
    033
    034$purl = str_replace($basename, '', $purl).urlencode($this->Tag);
    035//var_dump($purl);exit;
    036//$purl .= "?/".urlencode($this->Tag);
    037
    038//获得上一页和下一页的链接
    039//if($this->PageNo != 1) 这是修正上一页为负数的问题
    040if($this->PageNo != 1 && $this->PageNo != "")
    041{
    042$prepage.="<li><a href='".$purl."-$prepagenum'.html>上一页</a></li>\r\n";
    043$indexpage="<li><a href='".$purl."-1.html'>首页</a></li>\r\n";
    044}
    045else
    046{
    047$indexpage="<li><a>首页</a></li>\r\n";
    048}
    049if($this->PageNo!=$totalpage && $totalpage>1)
    050{
    051$nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一页</a></li>\r\n";
    052$endpage="<li><a href='".$purl."-$totalpage.html'>末页</a></li>\r\n";
    053}
    054else
    055{
    056$endpage="<li><a>末页</a></li>\r\n";
    057}
    058
    059//获得数字链接
    060$listdd="";
    061$total_list = $list_len * 2 + 1;
    062if($this->PageNo >= $total_list)
    063{
    064$j = $this->PageNo - $list_len;
    065$total_list = $this->PageNo + $list_len;
    066if($total_list > $totalpage)
    067{
    068$total_list = $totalpage;
    069}
    070}
    071else
    072{
    073$j=1;
    074if($total_list > $totalpage)
    075{
    076$total_list = $totalpage;
    077}
    078}
    079for($j; $j<=$total_list; $j++)
    080{
    081if($j == $this->PageNo)
    082{
    083$listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
    084}
    085else
    086{
    087$listdd.="<li><a href='".$purl."-$j.html'>".$j."</a></li>\r\n";
    088}
    089}
    090$plist = '';
    091if(preg_match('/info/i', $listitem))
    092{
    093$plist .= $maininfo.' ';
    094}
    095if(preg_match('/index/i', $listitem))
    096{
    097$plist .= $indexpage.' ';
    098}
    099if(preg_match('/pre/i', $listitem))
    100{
    101$plist .= $prepage.' ';
    102}
    103if(preg_match('/pageno/i', $listitem))
    104{
    105$plist .= $listdd.' ';
    106}
    107if(preg_match('/next/i', $listitem))
    108{
    109$plist .= $nextpage.' ';
    110}
    111if(preg_match('/end/i', $listitem))
    112{
    113$plist .= $endpage.' ';
    114}
    115return$plist;
    116}
    1173.设置静态规则
    118
    119我们这里以iis7为例子,设置以下规则:
    120
    121Copy to ClipboardLiehuo.Net Codes引用的内容:[www.dede58.com]
    122<?xml version="1.0"encoding="UTF-8"?>
    123<configuration>
    124<system.webServer>
    125<rewrite>
    126<rules>
    127<rule name="weather1"stopProcessing="true">
    128<match url="tags/([^-]+)\.html$"ignoreCase="true"/>
    129<conditions logicalGrouping="MatchAll">
    130<add input="{REQUEST_FILENAME}"matchType="IsFile"negate="true"/>
    131<add input="{REQUEST_FILENAME}"matchType="IsDirectory"negate="true"/>
    132</conditions>
    133<action type="Rewrite"url="/tags.php?/{R:1}"appendQueryString="false"/>
    134</rule>
    135<rule name="weather2"stopProcessing="true">
    136<match url="tags/([^-]+)-([0-9]+)\.html$"ignoreCase="true"/>
    137<conditions logicalGrouping="MatchAll">
    138<add input="{REQUEST_FILENAME}"matchType="IsFile"negate="true"/>
    139<add input="{REQUEST_FILENAME}"matchType="IsDirectory"negate="true"/>
    140</conditions>
    141<action type="Rewrite"url="/tags.php?/{R:1}/{R:2}"appendQueryString="false"/>
    142</rule>
    143</rules>
    144</rewrite>
    145</system.webServer>
    146</configuration>

    好了,至此就搞定了。如果您还有什么问题,请与最火软件站联系。

    郑重声明:
    本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。 若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
    我们不承担任何技术及版权问题,且不对任何资源负法律责任。
    如无法下载,联系站长索要。
    如有侵犯您的版权,请给我们来信:admin@cniao8.com,我们尽快处理。

    织梦中{dede:channel}无法调用隐藏栏目解决方法织梦中{dede:channel}无法调用隐藏栏目
    DEDECMS批量导入excel数据到后台文章系统的开发教程DEDECMS批量导入excel数据到后台文章系
    织梦58织梦模板加固版教程详解织梦58织梦模板加固版教程详解