--- title: Link slug: Web/HTTP/Headers/Link tags: - Draft - HTTP - HTTP Header - HTTP ヘッダー - Link - NeedsCompatTable - NeedsContent - NeedsSyntax - Reference - エンティティヘッダー translation_of: Web/HTTP/Headers/Link ---
{{HTTPSidebar}}

HTTP の Link エンティティヘッダーフィールドは、 HTTP ヘッダー内の1つ以上のリンクをシリアル化する手段を提供します。意味的には、 HTML の <link> 要素と同等です。

Syntax

Link: < uri-reference >; param1=value1; param2="value2"
<uri-reference>
URI 参照。 <> で囲む必要があります。

Parameters

リンクヘッダーには ; で区切られたパラメーターが含まれており、 {{HTMLElement("link")}} 要素の属性に相当します。

URI は <> で囲む必要があります。

Link: <https://example.com>; rel="preconnect"
Link: https://bad.example; rel="preconnect"

カンマで区切られた複数のリンクを指定できます。次に例を示します。

Link: <https://one.example.com>; rel="preconnect", <https://two.example.com>; rel="preconnect", <https://three.example.com>; rel="preconnect"

仕様書

仕様書 題名 備考
{{RFC(8288, "Link Serialisation in HTTP Headers", 3)}} IETF RFC
{{RFC(5988, "The Link Header Field", 5)}} IETF RFC 初回定義

ブラウザーの互換性

{{Compat("http.headers.Link")}}

関連情報