WEB1052 - <title> 標籤內容在網站內不是唯一的

網站中的每個 <title> 標籤應該都是唯一的。

說明

搜尋引擎會使用 <title> 標籤的內容,提供關於網站內容的部分詳細資料以及提供關於網頁內容的特定詳細資料。每個網頁都應該有單一、獨特的標題包含在網頁中 <head> 標籤區段內的 <title> 標籤裡。

詳細資料

如果標籤的內容在網站的其他 <title> 標籤中重複出現,則 <title> 標籤中任何詞彙的相關性就不再是此網頁所獨有的。這可能會降低這兩個網頁在搜尋引擎結果中的排名。

<title> 標籤是網站開發人員所控制最重要的標籤,它可影響網站在搜尋引擎結果中的相關性和排名。獨特、精確而且具描述性的標題可提高網站的點擊量。

<title> 標籤應該位於網頁的 <head> 標籤區段內,而且通常放在 <meta name="keywords"> 標籤和 <meta name="description"> 標籤之前。

範例

以下是格式正確的 <title> 標籤範例,其中 <meta name="description"><meta name="keywords"> 標籤均位於 <head> 標籤區段中。

<head>
    <title>Contact Us</title>
    <meta name="description">Contact information for Proseware, Inc., including addresses, phone numbers, and email</meta>
    <meta name="keywords" content="Proseware,Proseware applications,Proseware utilities,Proseware tools,Proseware server tools"/>
</head>