源码网_提供网站源码、discuz、wordpress主题与插件和站长教程等资源的下载服务

pbootcms百度编辑器UEDITOR给超链接默认添加rel="nofollow"标签

随着越来越多的站长开始重视seo了,对rel="nofollow"也在乎得多了。但是由于百度编辑器ueditor并不自带rel="nofollow"功能,在引入其他站点URL链接的时候,就会导致蜘蛛流失,自己的网站权重下降。
今天AB模板网整理了一下,来教大家怎么改,让ueditor的link自带rel="nofollow"标签,话不多说,直接上图。 

1、找到/core/extend/ueditor/dialogs/link/link.html,修改第81行。

pbootcms百度编辑器UEDITOR给超链接默认添加rel="nofollow"标签(图1)
1href : href,
2target : $G("target").checked ? "_blank" : _self,
3title : $G("title").value.replace(/^\s+|\s+$/g, ),
4_href:href

修改成:

1href : href,
2target : $G("target").checked ? "_blank" : _self,
3title : $G("title").value.replace(/^\s+|\s+$/g, ),
4rel: nofollow,
5_href:href

2、找到/core/extend/ueditor/ueditor.config.js,修改第370行。

pbootcms百度编辑器UEDITOR给超链接默认添加rel="nofollow"标签(图2)
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百度编辑器UEDITOR给超链接默认添加rel="nofollow"标签(图3)

本文链接:http://www.7ov.cn/xinwendongtai/1910.html

版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!

联系客服
网站客服 业务合作 在线客服QQ
294169012
微信号
微信号
微信号
返回顶部