WEB1045 - 網頁的標題和描述相同

<title><meta name="description"> 標籤的內容應不同。

說明

標題不能包含與網頁描述相同的內容。

詳細資料

<title> 標籤是網站開發人員所控制最重要的標籤,它可影響網站在搜尋引擎結果中的相關性和排名。

<title> 標籤和 <meta name="description"> 標籤均提供重要資訊給搜尋引擎。如果 <meta name="description"> 標籤的內容與 <title> 標籤的內容相同,對於網頁在搜尋引擎結果中的排名並沒有額外的幫助。如果 <title><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>