您现在的位置是:首页 > 教程 > 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网站报错No input file specified怎么办
- pbootcms检测到您模板中包含文件超过50个的解决方法
- pbootcms后台搜索功能扩展和增加显示字段的方法
- pbootcms标签{pboot:list}怎么添加新的字段
- pbootcms前台筛选功能扩展到任意字段的实现方法
- pbootcms加载类文件时发生错误,类名【core\basic\Kernel】
- Pbootcms留言提交成功提示语修改方法
- pbootcms留言板怎么取消验证码
- pbootcms显示指定栏目的名称和链接的写法
- pbootcms怎么去除URL地址中index.php后缀!
- 阿里云pbootcms提示"KERNEL.PHP"为后门(WEBSHELL)的解决方法
- PbootCMS自定义前台404错误页的方法
随机图文
-
pbootcms列表页调用tag标签的方法
列表页中调用注意嵌套在pboot:list标签中内容页中调用 -
pbootcms制作tag标签静态URL路径的实现方法
pbootcms在制作TAG标签的时候,形成的链接地址一般为:https:// .ebingou.cn/SEO/?tag=代码号有客户需求,需要将TAG标签列表改成静态化的类似于栏目结构的需求。 -
pbootcms内容图片不固定宽度和高度怎么办
本文介绍了pbootcms内容图片不固定宽度和高度解决办法,PBCMS默认上传图片,会自动给图片加个宽度和高度,对于PC端来说没啥影响,因为图片的宽不会很大,对于手机端就不行了 -
PbootCMS怎么实现文章tag功能
PbootCMS老版本默认并没有添加tag字段,本文将带我们学习怎么来实现tag功能,本文适合老版本,1.3+新版本请直接使用tag功能更好
留言与评论 (共有 条评论) |