discuz门户或首页不能正常显示SEO信息改正教程
discuz门户或首页的seo关键字keywords和description不能正确显示问题我们可以通过修改文件来解决。问题分析:
错误通常发生在用户没有登录时的界面,当登陆时就会有出现关键字keywords和description,退出后就没有关键字了,这对搜索引擎的收录非常的不友好。
修改方法:
找到后台目录中 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 && (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);
}
前排,哇咔咔 路过的帮顶 回个帖子,下班咯~ 啥玩应呀 :lol 我擦!我要沙发! 看帖要回,回帖才健康,在踩踩,楼主辛苦了! 专业抢沙发的!哈哈 支持支持再支持
页:
[1]
2