原因分析:由于discuz SEO機制,為了節(jié)省一些流量,在查看源代碼的時候,只有蜘蛛和管理員可以看到頁面中的 keyword 和 description,而其他普通會員和游客是看不到的,但是蜘蛛是可以看到的,不相信的朋友可以模擬蜘蛛看看結果。
問題所在:目前發(fā)現的問題是如果開啟了游客緩存,那么游客觸發(fā)緩存后,會造成蜘蛛爬行的時候也讀了緩存,那么就會造成蜘蛛找不到 keyword 與 description 了,所以可以做如下修改,如下修改后,游客也可以看到這兩項了,如果開啟了游客緩存,則需要將游客緩存刪除一下才會生效。
修改discuz SEO文件:source/class/helper/helper_seo.php
如果想要完全放開SEO設置給游客看,那么可以將:
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); }
Discuz X3/X3.1/X3.4適用,修改后,在管理后臺更新下數據緩存,刷新門戶首頁即可在游客模式下看到Keyword和Description