您现在的位置是:首页 > 教程 > pbootcms教程pbootcms教程
pbootcms百度编辑器UEDITOR给超链接默认添加rel="nofollow"
灵雁2024-09-02 18:55:59pbootcms教程已有人查阅
导读随着越来越多的站长开始重视SEO了,对rel="nofollow"也在乎得多了。但是由于百度编辑器Ueditor并不自带rel="nofollow"功能,在引入其他站点URL链接的时候
随着越来越多的站长开始重视SEO了,对rel="nofollow"也在乎得多了。但是由于百度编辑器Ueditor并不自带rel="nofollow"功能,在引入其他站点URL链接的时候,就会导致蜘蛛流失,自己的网站权重下降。今天教大家怎么改,让uedITor的link自带rel="nofollow"标签,话不多说。
1、找到/core/extend/ueditor/dialogs/link/link.HTML,修改第81行。
1、找到/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"了,网站后台测试添加链接,测试成功,演示图如下。
本文标签:
很赞哦! ()
相关文章
随机图文
-
pbootcms增加栏目提示:栏目编号已经存在,不能再使用的解决方法
通过织梦转pbootcms工具导入栏目数据后,在后台新增栏目的时候提示“该内容栏目编号已经存在,不能再使用” -
pbootcms模板导航调用方法
pbootcms模板导航调用方法:1、导航菜单列表{pboot:nav}[nav:name]{/pboot:nav}2、二级嵌套3、三级嵌套 -
pbootcms模板修改编辑工具用哪个好
在当今数字化和信息化的时代,网页设计越来越受到人们的关注,网页编辑越来越成为人们日常工作和学习的必备技能。网页编辑工具应运而生。对于网页设计师来说 -
PbootCMS怎么实现文章tag功能
PbootCMS老版本默认并没有添加tag字段,本文将带我们学习怎么来实现tag功能,本文适合老版本,1.3+新版本请直接使用tag功能更好
留言与评论 (共有 条评论) |
相关标签
大家喜欢
- pbootcms栏目单页内容怎么调用
- pbootcms怎么增加webp和mov等上传文件类型
- pbootcms输出当前页面完整url的标签写法
- pbootcms模板怎么安装与授权
- pbootcms通过layui上传实现留言文件上传功能的代码实例
- pbootcms增加换行格式化标签br=1或转换成p和li的方法
- pbootcms模板升级程序后报错:Parse error: syntax error, unexpec
- pbootcms模板当前栏目标签介绍
- pbootcms提示程序运行异常: syntax error, unexpected '的解决方法
- pbootcms提示该内容栏目编号已经存在不能再使用的解决方法