[p=30, null, left][color=rgb(34, 34, 34)][font=tahoma, arial, "]最近用站长工具查论坛的 SEO 的时候,忽然发现,论坛门户的 Keyword(关键词) 和 Description(描述)都只剩下门户俩字了。原来 Discuz 对游客屏蔽了关键词与描述。虽然说用管理员账号登陆后,可以正常显示了。不过很难说蜘蛛或Robot是不是可以真正能获取。所以为了收录,还是改回来吧。具体方法为:[/font][/color][/p][p=30, null, left][font=tahoma, arial, "][color=#222222]找到文件“ [/color][color=#ff0000]source/class/helper/helper_seo.php[/color][color=#222222] ”这个文件[/color][/font][/p][p=30, null, left][color=rgb(34, 34, 34)][font=tahoma, arial, "]搜索:[/font][/color][/p][code]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);
}[/code][p=30, null, left][color=rgb(34, 34, 34)][font=tahoma, arial, "]修改为:[/font][/color][/p][code]if($descriptiontext) {
$seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
}
if($keywordstext) {
$seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
}[/code][color=#222222][font=tahoma, arial, "]OK,最后登出后,再用游客身份查看源代码,已经可以看到 Description 和 Keyword 了,在用站长SEO工具测试一下,也OK了。。[/font][/color]
[p=30, null, left][color=rgb(34, 34, 34)][font=tahoma, arial, "]完事大吉![/font][/color][/p]
|