Wordpress 如何修改 robots.txt 為 no-follow
在 WordPress 中修改 robots.txt 設定 no-follow 有以下幾種主要方法:
使用 SEO 外掛方式
使用 Rank Math:
- 進入 WordPress 後台
- 前往 Rank Math SEO > General Settings
- 點選 Edit robots.txt
- 在編輯器中加入以下程式碼:
User-agent: *
Disallow: /path/to/your/directory/
使用 Yoast SEO:
- 進入 WordPress 後台
- 前往 SEO > Tools
- 點選 File Editor
- 編輯 robots.txt 內容
- 點選儲存變更
手動編輯方式
使用 cPanel:
- 登入 cPanel
- 進入 File Manager
- 找到 public_html 目錄
- 編輯或上傳 robots.txt 檔案
使用 FTP:
- 連接到網站 FTP
- 前往根目錄
- 編輯或上傳 robots.txt 檔案
使用 WordPress 函數
在 functions.php 中加入以下程式碼:
function custom_robots_txt($output) {
return "User-agent: *\nDisallow: /path/to/directory/";
}
add_filter('robots_txt', 'custom_robots_txt');
注意事項
- 建議使用 SEO 外掛方式,較為安全且方便管理
- 避免同時使用多個 robots.txt 編輯器
- 修改前先備份現有的 robots.txt 內容
- 確保修改後的設定不會影響重要頁面的索引