Welcome to the website navigation,本站只接受合法正规的企业网站,欢迎站长们提交你的网站获得展示和流量有任何问题请联系站长,欢迎大家加入本站。

                
提交网站
  • 网站:76083
  • 待审:5
  • APP:577
  • 文章:304416
  • 会员:56004
文字内链包年1000元 文字内链包年1000元 文字内链包年1000元 AI办公网站 AI绘画工具 AIchat

名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。现在好多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,找到分页系统数据库函数,将其替换为:


001	/**
002	* 获取动态的分页站点列表
003	*
004	* @access public
005	* @param int $list_len 站点列表宽度
006	* @param string $listitem 站点列表样式
007	* @return string
008	*/
009	function GetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno")
010	{
011	$prepage="";
012	$nextpage="";
013	$prepagenum = $this->PageNo - 1;
014	$nextpagenum = $this->PageNo   1;
015	if($list_len == "" || preg_match("/[^0-9]/", $list_len))
016	{
017	$list_len = 3;
018	}
019	$totalpage = $this->TotalPage;
020	if($totalpage <= 1 && $this->TotalResult > 0)
021	{
022	return "<span class=\"pageinfo\">共1页/".$this->TotalResult."条</span>";
023	}
024	if($this->TotalResult == 0)
025	{
026	return "<span class=\"pageinfo\">共0页/".$this->TotalResult."条</span>";
027	}
028	$maininfo = "<span class=\"pageinfo\">共{$totalpage}页/".$this->TotalResult."条</span>\r\n";
029	$purl = $this->GetCurUrl();
030	$basename = basename($purl);
031	$tmpname = explode('.', $basename);
032	
033	$purl = str_replace($basename, '', $purl).urlencode($this->Tag);
034	//var_dump($purl);exit;
035	//$purl .= "?/".urlencode($this->Tag);
036	
037	//获得上一页和下一页的链接
038	//if($this->PageNo != 1) 这是修正上一页为负数的问题
039	        if($this->PageNo != 1 && $this->PageNo != "")
040	{
041	$prepage.="<li><a href='".$purl."-$prepagenum'.html>上一页</a></li>\r\n";
042	$indexpage="<li><a href='".$purl."-1.html'>首页</a></li>\r\n";
043	}
044	else
045	{
046	$indexpage="<li><a>首页</a></li>\r\n";
047	}
048	if($this->PageNo!=$totalpage && $totalpage>1)
049	{
050	$nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一页</a></li>\r\n";
051	$endpage="<li><a href='".$purl."-$totalpage.html'>末页</a></li>\r\n";
052	}
053	else
054	{
055	$endpage="<li><a>末页</a></li>\r\n";
056	}
057	
058	//获得数字链接
059	$listdd="";
060	$total_list = $list_len * 2   1;
061	if($this->PageNo >= $total_list)
062	{
063	$j = $this->PageNo - $list_len;
064	$total_list = $this->PageNo   $list_len;
065	if($total_list > $totalpage)
066	{
067	$total_list = $totalpage;
068	}
069	}
070	else
071	{
072	$j=1;
073	if($total_list > $totalpage)
074	{
075	$total_list = $totalpage;
076	}
077	}
078	for($j; $j<=$total_list; $j  )
079	{
080	if($j == $this->PageNo)
081	{
082	$listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
083	}
084	else
085	{
086	$listdd.="<li><a href='".$purl."-$j.html'>".$j."</a></li>\r\n";
087	}
088	}
089	$plist = '';
090	if(preg_match('/info/i', $listitem))
091	{
092	$plist .= $maininfo.' ';
093	}
094	if(preg_match('/index/i', $listitem))
095	{
096	$plist .= $indexpage.' ';
097	}
098	if(preg_match('/pre/i', $listitem))
099	{
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	<action type="Rewrite" url="/tags.php?/{R:1}" appendQueryString="false" />
133	</rule>
134	<rule name="weather2" stopProcessing="true">
135	<match url="tags/([^-] )-([0-9] )\.html$" ignoreCase="true" />
136	<conditions logicalGrouping="MatchAll">
137	<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
138	<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
139	</conditions>
140	<action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" />
141	</rule>
142	</rules>
143	</rewrite>
144	</system.webServer>
145	</configuration>
好了,至此就搞定了。

dedecms网站程序在首页具体调用会员信息(会员头像和名字等)lTiAIChat_企业网址导航_网址分类目录_企业黄页网址提交查询专业网站!

lTiAIChat_企业网址导航_网址分类目录_企业黄页网址提交查询专业网站!

关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。

标签:

分享到:

  网友投稿

注册时间:

网站:0 个   APP:0 个  文章:0 篇

  • 76083

    网站

  • 577

    APP

  • 304416

    文章

  • 56004

    会员

赶快注册账号,推广您的网站吧!
文章分类
热门网站
最新入驻APP小程序

宝贝市场2023-02-08

宝贝市场——买手和卖家商品展示

夺宝助手2023-02-08

夺宝助手小程序,查看每日快夺宝平

查诚信2023-02-08

查诚信是一款免费的商业查询工具

车价天天报2023-02-08

快速连接汽车销售,获知汽车最新报

考勤助理小程序2023-02-08

上班签到考勤,实时定位,后台轻松

汽车报价大全查询2023-02-08

汽车报价大全查询提供最新汽车市