织梦cms系统TAG标签和分页伪静态设置教程_DedeCms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
织梦cms系统TAG标签和分页伪静态设置教程
现在好多CMS系统都有TAGS标签这项功能,知名的DEDECMS也有,但是它的标签功能很差,不利于seo优化,同时也有很多问题,比如:当前页不存在上一页时,链接为“-1”的问题,还有出现“系统无此标签,可能已经移除”的问题。
 
今天小编就教大家把标签伪静态(部分资料来源于网络),同时也修复了一些上述提到的BUG。
 
1.修改前台显示链接 
 
我们这里达到的效果就是使原来/tags.php?keywors更改为/tags/keywords.html。 
 
这里主要修改下调用的标签,在/include/taglib/tag.lib.php中,在87行找到 
  1. $row['link'] = $cfg_cmsurl."/tags?".urlencode($row['keyword']);  
将其改为: 
  1. $row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html"; 
2.修改分页代码部分
 
我们需要修改include/arc.taglist.class.php,找到分页函数,将其替换为:
  1.  /** 
  2.  * 获取动态的分页列表 
  3.  * 
  4.  * @access public 
  5.  * @param int $list_len 列表宽度 
  6.  * @param string $listitem 列表样式 
  7.  * @return string 
  8.  */ 
  9.  function GetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno"
  10.  { 
  11.  $prepage=""
  12.  $nextpage=""
  13.  $prepagenum = $this->PageNo - 1; 
  14.  $nextpagenum = $this->PageNo + 1; 
  15.  if($list_len == "" || preg_match("/[^0-9]/", $list_len)) 
  16.  { 
  17.  $list_len = 3
  18.  } 
  19.  $totalpage = $this->TotalPage; 
  20.  if($totalpage <= 1 && $this->TotalResult > 0) 
  21.  { 
  22.  return "<span class=\"pageinfo\">共1页/".$this->TotalResult."条</span>"; 
  23.  } 
  24.  if($this->TotalResult == 0) 
  25.  { 
  26.  return "<span class=\"pageinfo\">共0页/".$this->TotalResult."条</span>"; 
  27.  } 
  28.  $maininfo = "<span class=\"pageinfo\">共{$totalpage}页/".$this->TotalResult."条</span>\r\n"; 
  29.  $purl = $this->GetCurUrl(); 
  30.  $basenamebasename = basename($purl); 
  31.  $tmpname = explode('.', $basename); 
  32.  
  33.  $purl = str_replace($basename, '', $purl).urlencode($this->Tag); 
  34.  //var_dump($purl);exit; 
  35.  //$purl ."?/".urlencode($this->Tag); 
  36.  
  37.  //获得上一页和下一页的链接 
  38.  //if($this->PageNo != 1) 这是修正上一页为负数的问题 
  39.          if($this->PageNo != 1 && $this->PageNo != "") 
  40.  { 
  41.  $prepage.="<li><a href='".$purl."-$prepagenum'.html>上一页</a></li>\r\n"; 
  42.  $indexpage="<li><a href='".$purl."-1.html'>首页</a></li>\r\n"; 
  43.  } 
  44.  else 
  45.  { 
  46.  $indexpage="<li><a>首页</a></li>\r\n"
  47.  } 
  48.  if($this->PageNo!=$totalpage && $totalpage>1) 
  49.  { 
  50.  $nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一页</a></li>\r\n"; 
  51.  $endpage="<li><a href='".$purl."-$totalpage.html'>末页</a></li>\r\n"; 
  52.  } 
  53.  else 
  54.  { 
  55.  $endpage="<li><a>末页</a></li>\r\n"
  56.  } 
  57.  
  58.  //获得数字链接 
  59.  $listdd=""
  60.  $total_list = $list_len * 2 + 1; 
  61.  if($this->PageNo >= $total_list) 
  62.  { 
  63.  $j = $this->PageNo - $list_len; 
  64.  $total_list = $this->PageNo + $list_len; 
  65.  if($total_list > $totalpage) 
  66.  { 
  67.  $total_list = $totalpage; 
  68.  } 
  69.  } 
  70.  else 
  71.  { 
  72.  $j=1
  73.  if($total_list > $totalpage) 
  74.  { 
  75.  $total_list = $totalpage; 
  76.  } 
  77.  } 
  78.  for($j; $j<=$total_list; $j++) 
  79.  { 
  80.  if($j == $this->PageNo) 
  81.  { 
  82.  $listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n"; 
  83.  } 
  84.  else 
  85.  { 
  86.  $listdd.="<li><a href='".$purl."-$j.html'>".$j."</a></li>\r\n"; 
  87.  } 
  88.  } 
  89.  $plist = ''
  90.  if(preg_match('/info/i', $listitem)) 
  91.  { 
  92.  $plist .= $maininfo.' '; 
  93.  } 
  94.  if(preg_match('/index/i', $listitem)) 
  95.  { 
  96.  $plist .= $indexpage.' '; 
  97.  } 
  98.  if(preg_match('/pre/i', $listitem)) 
  99.  { 
  100.  $plist .= $prepage.' '; 
  101.  } 
  102.  if(preg_match('/pageno/i', $listitem)) 
  103.  { 
  104.  $plist .= $listdd.' '; 
  105.  } 
  106.  if(preg_match('/next/i', $listitem)) 
  107.  { 
  108.  $plist .= $nextpage.' '; 
  109.  } 
  110.  if(preg_match('/end/i', $listitem)) 
  111.  { 
  112.  $plist .= $endpage.' '; 
  113.  } 
  114.  return $plist; 
  115.  } 
  116.  3.设置伪静态规则 
  117.  
  118.  我们这里以iis7为例子,设置以下规则: 
  119.  
  120.  Copy to ClipboardLiehuo.Net Codes引用的内容:[www.veryhuo.com] 
  121.  <?xml version="1.0" encoding="UTF-8"?> 
  122.  <configuration> 
  123.  <system.webServer> 
  124.  <rewrite> 
  125.  <rules> 
  126.  <rule name="weather1" stopProcessing="true"> 
  127.  <match url="tags/([^-]+)\.html$" ignoreCase="true" /> 
  128.  <conditions logicalGrouping="MatchAll"> 
  129.  <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> 
  130.  <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> 
  131.  </conditions> 
  132. 132 
  133. 132 <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> 
好了,至此就搞定了。仅供参考学习哦~
 

查看更多 DedeCms教程  织梦模板  织梦DedeCms视频教程  织梦dedecms专题

来源:模板无忧//所属分类:DedeCms教程/更新时间:2020-06-05
相关DedeCms教程