細節決定成敗,對於 seo 來說,能讓自己的站出鏈減少的話,對網站的權重最佳化有很大幫助的。因為網站首頁的權重比較高,所以尤其是在論壇首頁,做這項工作更為必要了!
可以在連結上加 nofollow,也可以徹底去掉連結。建議使用 nofollow,保留一下版權連結,和去掉連結效果一樣。
開啟檔案 source/plugin/security 裡面的 security.class.php 搜尋:
function global_footerlink() {
return ' <a target="_blank" title="'.lang('plugin/security',
'title').'"><img
src="static/image/common/security.png"></a>';
}
替換為
function global_footerlink() {
return ' <a target="_blank"
title="'.lang('plugin/security', 'title').'" rel="nofollow"><img src="static/image/common/security.png"></a> ';
}
當然也可以去掉它,下面這個是徹底去掉連結的:
function global_footerlink() {
return '<img src="static/image/common/security.png">';
}