--- title: Link slug: Web/HTTP/Headers/Link tags: - Draft - HTTP - HTTP Header - HTTP ヘッダー - Link - NeedsCompatTable - NeedsContent - NeedsSyntax - Reference - エンティティヘッダー translation_of: Web/HTTP/Headers/Link ---
HTTP の Link
エンティティヘッダーフィールドは、 HTTP ヘッダー内の1つ以上のリンクをシリアル化する手段を提供します。意味的には、 HTML の <link> 要素と同等です。
Link: < uri-reference >; param1=value1; param2="value2"
<uri-reference>
<
と >
で囲む必要があります。リンクヘッダーには ;
で区切られたパラメーターが含まれており、 {{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")}}