首页 > 网站 > 优化推广 > 正文

去除discuz社区防水墙图标及外链的方法

2024-04-26 14:03:04
字体:
来源:转载
供稿:网友

细节决定成败,对于SEOer来说,能让自己的网站出链减少的话,对网站的权重优化有很大帮助。因为网站首页的权重比较高,所以尤其是在论坛首页,做这项工作更为必要了!

保留防水墙图标,但消除网页权重输出的办法:

可以在链接上加nofollow,也可以彻底去掉链接。建议使用前者,保留版权链接。

打开文件 source/plugin/security/security.class.php
function global_footerlink() {
return '&nbsp;<a target="_blank" title="'.lang('plugin/security', 'title').'"><img src="static/image/common/security.png"></a>';
}

替换为:
function global_footerlink() {
return '&nbsp;<a target="_blank"
title="'.lang('plugin/security', 'title').'" rel="nofollow"><img src="static/image/common/security.png"></a>&nbsp;';
}

彻底删除防水墙图标及外链

方法一:找到代码:
<a href="http://discuz.qq.com/service/security" target="_blank" title="'.lang('plugin/security', 'title').'"><img src="static/image/common/security.png"></a>
删除即可。

方法二:只需要在通用底部模板footer.htm中,找到代码:
<!--{hook/global_footerlink}-->
删除即可。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表