超链接可能会导致蜘蛛爬行流失,导致自己的网站权重下降,rel="nofollow"标签就很好地解决了这个问题。
今天pc模板网整理了一下,来教大家怎么改,让ueditor的link自带rel=”nofollow”标签,减少蜘蛛流失。 

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

href : href,
target : $G(“target”).checked ? “_blank” : _self,
title : $G(“title”).value.replace(/^\s+|\s+$/g, ),
_href:href

修改成:

href : href,
target : $G(“target”).checked ? “_blank” : _self,
title : $G(“title”).value.replace(/^\s+|\s+$/g, ),
rel: nofollow,
_href:href

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

a:      [target, href, title, class, style,name,id],
abbr:   [title, class, style],
abbr:   [title, class, style],
area:   [shape, coords, href, alt],

修改成:

a:      [target, href, title, class, style,name,rel,id],
abbr:   [title, class, style],
abbr:   [title, class, style],
area:   [shape, coords, href, alt],

上述两个文件修改好就可以实现rel=”nofollow”了,网站后台测试添加链接,测试成功,演示图如下。

发表评论

后才能评论