织梦电脑站手机站TAG标签伪静态-汉字名称版
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);
改成
继续找到
return $plist;
在它上面加入
4、电脑站TAG标签伪静态规则,根据自己网站的主机环境选择下面的规则
.htaccess (Apache)
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)
<rule name="tag首页"> <match url="^tags.html$" ignoreCase="false" /> <action type="Rewrite" url="tags.php" appendQueryString="false" /> </rule> <rule name="tag列表分页"> <match url="^tags/(.*)_([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" /> </rule> <rule name="tag列表分页最后有左斜杠"> <match url="^tags/(.*)_([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}/" appendQueryString="false" /> </rule> <rule name="tag列表"> <match url="^tags/(.*).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}" appendQueryString="false" /> </rule> <rule name="tag列表最后有左斜杠"> <match url="^tags/(.*).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/" appendQueryString="false" /> </rule>
如需后台TAG标签管理里的TAG链接点击打开也是伪静态可这样改
打开 /dede/templets/tags_main.htm 找到 89行
<a href=http://www.dede58.com/a/dedejq/"../tags.php?/<?php echo urlencode($fields['tag']); ?>/" target="_blank">{dede:field.tag /}</a>
改成
<a href=http://www.dede58.com/a/dedejq/"../tags/<?php echo urlencode($fields['tag']); ?>.html" target="_blank">{dede:field.tag /}</a>
手机站TAG伪静态实现教程
1、m 文件夹添加tags.php文件给手机站使用
附下载地址:
2、手机站TAG标签伪静态规则,根据自己网站的主机环境选择下面的规则
.htaccess (Apache 放到m文件夹下)
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)
<rule name="tag首页"> <match url="^tags.html$" ignoreCase="false" /> <action type="Rewrite" url="tags.php" appendQueryString="false" /> </rule> <rule name="tag列表分页"> <match url="^tags/(.*)_([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" /> </rule> <rule name="tag列表分页最后有左斜杠"> <match url="^tags/(.*)_([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}/" appendQueryString="false" /> </rule> <rule name="tag列表"> <match url="^tags/(.*).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}" appendQueryString="false" /> </rule> <rule name="tag列表最后有左斜杠"> <match url="^tags/(.*).html$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/" appendQueryString="false" /> </rule>
3、手机站TAG标签首页和TAG标签列表页模板为
tag_m.htm
taglist_m.htm
4、TAG标签调用与电脑站一样
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
- 织梦dede首页列表页获取文章对应的tag标签
- 织梦dede导航栏目顶级和二级判断二级输出不同url
- 织梦dede标签array runphp静态生成乱码BUG解决方法
- 织梦dede如何禁止会员发布文章内容带超链接
- 织梦ajax跨域提交自定义表单和跨域验证码问题
- 织梦CMS MIP文章内容页图片适配百度MIP规范
- 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前
- 织梦DedeCMS更新系统缓存增加清理沉余缓存的功能
- 织梦CMS让channelartlist标签支持currentstyle属性的
- 织梦dede自带编辑器替换百度ueditor编辑器
- 织梦DEDECMS整站动态化或整站静态化设置方法
- 织梦dede 模板路径templets目录都有什么?