首页 > 网站制作
一言推荐::D 获取中...

帝国CMS"此TAG不存在"解决办法

OLEOU/ lz1473/网站制作/ 2020-06-16/

以前环境是:
服务器软件:    Apache/2
操作系统:    Linux,

之后变成了

服务器软件:    Microsoft-IIS/8.5
操作系统:    WINNT

导致帝国cms点击文章内容标签出现404页面

首先重新设置了.htaccess

# 将 RewriteEngine 模式打开
RewriteEngine On
#信息内容页:showinfo-[!--classid--]-[!--id--]-[!--page--].html
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^showinfo-(.+?)-(.+?)-(.+?).html$ /e/action/ShowInfo.php?classid=$1&id=$2&page=$3
#信息列表:listinfo-[!--classid--]-[!--page--].html
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^listinfo-(.+?)-(.+?).html$ /e/action/ListInfo/index.php?classid=$1&page=$2
#标题分类列表页:infotype-[!--ttid--]-[!--page--].html
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^infotype-(.+?)-(.+?).html$ /e/action/InfoType/index.php?ttid=$1&page=$2
#TAGS信息列表页:tags-[!--tagname--]-[!--page--].html
RewriteCond %{QUERY_STRING} ^(.*)$
#RewriteRule ^tags-(.+?)-(.+?).html$ /e/tags/index.php?tagname=$1&page=$2
RewriteRule ^tags-(.+?)-([0-9]+).html$ /e/tags/index.php?tagname=$1&page=$2 [QSA,NU,PT,L]

核对后台



这两项内容设置完成之后,点击英文tags是正常的,点击中文tags出现“此TAG不存在”

有人说把/e/tags/index.php文件中
$tagname=RepPostVar($_GET['tagname']); 
修改为
$tagname=RepPostVar(iconv('gb2312', 'utf-8', $_GET['tagname']));
本文不管用

于是尝试了修改标签模板
[showtags]'selfinfo',10,0,'',0,'',' ',0,'','tagname'[/showtags]
修改成
[showtags]'selfinfo',10,0,'',0,'',' ',0,'','tagid'[/showtags]
完美解决

TAGS:404 帝国cms tag

打赏 点赞
邮箱
验证码
昵称