无论你网站全站是静态或者动态还是伪静态,此教程都可以设置TAG标签页为伪静态,并且是单链接汉字名称的形式
按此教程操作后,电脑站TAG标签url会像如下:
TAG标签首页 https://www.dede58.com/tags.html
TAG标签列表 https://www.dede58.com/tags/织梦.html
TAG标签分页 https://www.dede58.com/tags/织梦_2.html
按此教程操作后,手机站TAG标签url会像如下:
TAG标签首页 https://m.dede58.com/tags.html
TAG标签列表 https://m.dede58.com/tags/织梦.html
TAG标签分页 https://m.dede58.com/tags/织梦_2.html
电脑站TAG伪静态实现教程
1、/tags.php 找到 18行
if(isset($tags[2])) $PageNo = intval($tags[2]);
在它下面加入
define('DEDERETAG', 'Y');
2、/include/taglib/tag.lib.php 找到 87行
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";
改成
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html";
3、/include/arc.taglist.class.php 找到 458行
$purl .= "?/".urlencode($this->Tag);
改成
if(!defined('DEDERETAG'))
{
$purl .= "?/".urlencode($this->Tag);
}
else
{
$purl = $GLOBALS['cfg_cmsurl']."/tags/".urlencode($this->Tag).".html";
}
|
继续找到
return $plist;
在它上面加入
if(defined('DEDERETAG'))
{
$plist = preg_replace('/_(d+).html/i','.html',$plist);
$plist = preg_replace('/.html/(d+)//i','_.html',$plist);
}
|
4、电脑站TAG标签伪静态规则,根据自己网站的主机环境选择下面的规则
.htaccess (Apache)
RewriteEngine On Rewritebase / RewriteRule ^tags.html$tags.php RewriteRule ^tags/(.*)_([0-9]+).html$tags.php?/$1/$2 RewriteRule ^tags/(.*)_([0-9]+).html$tags.php?/$1/$2/ RewriteRule ^tags/(.*).html$tags.php?/$1 [L] RewriteRule ^tags/(.*).html$tags.php?/$1/ |
Nginx
rewrite "^/tags.html$"/tags.php; rewrite "^/tags/(.*)_([0-9]+).html$"/tags.php?/$1/$2/ last; rewrite "^/tags/(.*).html$"/tags.php?/$1/; |
web.config (iis7 iis8)
|
|
如需后台TAG标签管理里的TAG链接点击打开也是伪静态可这样改
打开 /dede/templets/tags_main.htm 找到 89行
/" target="_blank">{dede:field.tag /}
改成
.html" target="_blank">{dede:field.tag /}
手机站TAG伪静态实现教程
1、m 文件夹添加tags.php文件给手机站使用
附下载地址:
| 织梦手机站TAG标签伪静态-添加tags.php文件.zip |
2、手机站TAG标签伪静态规则,根据自己网站的主机环境选择下面的规则
.htaccess (Apache 放到m文件夹下)
RewriteEngine On Rewritebase / RewriteRule ^tags.html$tags.php RewriteRule ^tags/(.*)_([0-9]+).html$tags.php?/$1/$2 RewriteRule ^tags/(.*)_([0-9]+).html$tags.php?/$1/$2/ RewriteRule ^tags/(.*).html$tags.php?/$1 [L] RewriteRule ^tags/(.*).html$tags.php?/$1/ |
Nginx
rewrite "^/tags.html$"/tags.php; rewrite "^/tags/(.*)_([0-9]+).html$"/tags.php?/$1/$2/ last; rewrite "^/tags/(.*).html$"/tags.php?/$1/; |
web.config (iis7 iis8)
|
|
3、手机站TAG标签首页和TAG标签列表页模板为
tag_m.htm
taglist_m.htm
4、TAG标签调用与电脑站一样



