Dedecms tag链接伪静态的设置,织梦技术
导读:织梦技术织梦技术原本的tag链接类似于: http://www.zzblo.com/tags.php?/织梦/ http://www.zzblo.com/tags.php?/Mdede模板下载织梦的模板。
原本的tag链接类似于:
http://www.zzblo.com/tags.php?/织梦/
http://www.zzblo.com/tags.php?/MySQL/
但是从seo的角度来看,我希望 吧链接修改为
http://www.zzblo.com/tags/MySQL/
http://www.zzblo.com/tags/织梦/ 。
修改了两个文件:
【1】 、/include/taglib/tag.lib.php
大概在87行将
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";修改为
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/";【2】、/include/arc.taglist.class.php
大概在457行将
$purl = $this->GetCurUrl(); $purl .= "?/".urlencode($this->织梦模板;Tag);将修改为:
$purl = "/tags/".urlencode($this->Tag);然后就是设置伪静态:apache主机:
RewriteRule ^tags\.html$ tags\.php RewriteRule ^tags/(.*)/$ tags.php?/$1 RewriteRule ^tags/(.*)/([0-9]+)/$ tags.php?/$1/$2/Nginx主机:
rewrite "^/tags\.html$" /tags\.php last; rewrite "^/tags/(.*)/$" /tags.php?/$1/ last; rewrite "^/tags/(.*)/([0-9]+)/$" /tags.php?/$1/$2/ last;作者:http://silenceper.com/archives免费织梦模板/989.html
相关dede模板下载织梦的模板。声明: 本文由我的SEOUC技术文章主页发布于:2023-07-21 ,文章Dedecms tag链接伪静态的设置,织梦技术主要讲述静态,标签,织梦网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_33270.html