細節(jié)決定成敗,對于seo來說,能讓自己的站出鏈減少的話,對網(wǎng)站的權(quán)重優(yōu)化有很大幫助的。因為網(wǎng)站首頁的權(quán)重比較高,所以尤其是在論壇首頁,做這項工作更為必要了!
可以在鏈接上加nofollow,也可以徹底去掉鏈接。建議使用nofollow,保留一下版權(quán)鏈接,和去掉鏈接效果一樣。
打開文件sourcepluginsecurity里面的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>';
}