pbootcms百度編輯器UEDITOR給超連結預設新增rel="nofollow"標籤

黄文Rex發表於2024-10-04

為了讓 PbootCMS 的 UEditor 編輯器給超連結預設新增 rel="nofollow" 標籤,你需要按照以下步驟進行修改。

步驟 1: 修改 link.html 檔案

  1. 定位檔案

    • 找到 core/extend/ueditor/dialogs/link/link.html 檔案。
  2. 修改第 81 行

    • 將原有的程式碼:
      javascript
      'href' : href, 'target' : $G("target").checked ? "_blank" : '_self', 'title' : $G("title").value.replace(/^\s+|\s+$/g, ''), '_href':href
    • 修改為:
      javascript
      'href' : href, 'target' : $G("target").checked ? "_blank" : '_self', 'title' : $G("title").value.replace(/^\s+|\s+$/g, ''), 'rel': 'nofollow', '_href':href

步驟 2: 修改 ueditor.config.js 檔案

  1. 定位檔案

    • 找到 core/extend/ueditor/ueditor.config.js 檔案。
  2. 修改第 370 行

    • 將原有的程式碼:
      javascript
      a: ['target', 'href', 'title', 'class', 'style','name','id'], abbr: ['title', 'class', 'style'], abbr: ['title', 'class', 'style'], area: ['shape', 'coords', 'href', 'alt'],
    • 修改為:
      javascript
      a: ['target', 'href', 'title', 'class', 'style','name','rel','id'], abbr: ['title', 'class', 'style'], abbr: ['title', 'class', 'style'], area: ['shape', 'coords', 'href', 'alt'],

相關文章