HTML <meta name="robots" content="noindex, noarchive, nofollow"> 標籤 (tag) - 禁止網頁被搜尋引擎索引收錄

<meta> robots 標記讓你可以以針對特定網頁控管應如何將各個網頁納入索引並顯示在搜尋引擎的 (Google) 搜尋結果中。

有幾種值可以設定:

  • noindex: 不要在搜尋結果中顯示這個網頁
  • nofollow: 不要追蹤這個網頁上的連結
  • none: 相當於 noindex, nofollow
  • noarchive: 不要在搜索結果中顯示快取連結
  • nosnippet: 不要在搜尋結果中顯示這個網頁的文字摘要或影片預覽畫面
  • notranslate: 不要在搜尋結果中提供這個網頁的翻譯
  • noimageindex: 不為這個網頁上的圖片建立索引
  • unavailable_after: [date/time]: 在指定的日期/時間後不在搜尋結果中顯示這個網頁
  • all: 預設值,等同於 index, follow

使用範例,我們指示搜尋引擎不要索引這個網頁:

<meta name="robots" content="noindex">

可以同時有多個條件,用半形逗號分隔開。例如,我們指示搜尋引擎不要索引這個網頁,也不要檢索網頁上的任一連結:

<meta name="robots" content="noindex, nofollow">