細節決定成敗,對於 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">';
}