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

COS、CDN
  1. 修改链接HTML文件

    • 文件路径:/core/extend/ueditor/dialogs/link/link.html
    • 修改第81行:
      javascript
       
      '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行:
      javascript
       
      a: ['target', 'href', 'title', 'class', 'style','name','rel','id'], abbr: ['title', 'class', 'style'], area: ['shape', 'coords', 'href', 'alt'],
COS、CDN
热门