crx349 发表于 2019-6-21 00:21:05

Discuz!x3.4 游客可见seo关键字(搜索引擎优化)

source\class\helper\helper_seo.php
搜索
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);
                        }
修改为
if($descriptiontext) {
                                $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
                        }
                        if($keywordstext ) {
                                $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
                        }
页: [1]
查看完整版本: Discuz!x3.4 游客可见seo关键字(搜索引擎优化)