随着越来越多的站长开始重视seo了,对rel="nofollow"也在乎得多了。但是由于百度编辑器ueditor并不自带rel="nofollow"功能,在引入其他站点URL链接的时候,就会导致蜘蛛流失,自己的网站权重下降。
今天AB模板网整理了一下,来教大家怎么改,让ueditor的link自带rel="nofollow"标签,话不多说,直接上图。
1、找到/core/extend/ueditor/dialogs/link/link.html,修改第81行。
1'href': href, 2'target': $G("target").checked ? "_blank": '_self', 3'title': $G("title").value.replace(/^\s+|\s+$/g, ''), 4'_href':href |
修改成:
1'href': href, 2'target': $G("target").checked ? "_blank": '_self', 3'title': $G("title").value.replace(/^\s+|\s+$/g, ''), 4'rel': 'nofollow', 5'_href':href |
2、找到/core/extend/ueditor/ueditor.config.js,修改第370行。
1a: ['target', 'href', 'title', 'class', 'style','name','id'], 2abbr: ['title', 'class', 'style'], 3abbr: ['title', 'class', 'style'], 4area: ['shape', 'coords', 'href', 'alt'], |
修改成:
1a: ['target', 'href', 'title', 'class', 'style','name','rel','id'], 2abbr: ['title', 'class', 'style'], 3abbr: ['title', 'class', 'style'], 4area: ['shape', 'coords', 'href', 'alt'], |
上述两个文件修改好就可以实现rel="nofollow"了,网站后台测试添加链接,测试成功,演示图如下。
上一篇:PbootCMS错误提示:执行SQL发生错误!错误:no such column: def1
下一篇:PBOOTCMS调用时间标签[list:data],怎么调用不显示小时、分、秒
郑重声明:
本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
我们不承担任何技术及版权问题,且不对任何资源负法律责任。
如无法下载,联系站长索要。
如有侵犯您的版权,请给我们来信:cainiaovip8@qq.com,我们尽快处理。