关于discuzseo关键字不能正确显示问题

2025-11-25 01:05:46

1、找到后台目录中 source/class/helper/helper_seo.php的文件

2、找到以下字段

if($descriptiontext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {

$seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);

}

if($keywordstext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {

$seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);

}

3、修改为

if($descriptiontext && (CURSCRIPT == 'portal' || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {

$seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);

}

if($keywordstext && (CURSCRIPT == 'portal' || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {

$seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);

}

4、在退出登陆用户后在查看网页,就出现了。

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢