From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pt-br/web/http/headers/link/index.html | 77 ++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 files/pt-br/web/http/headers/link/index.html (limited to 'files/pt-br/web/http/headers/link/index.html') diff --git a/files/pt-br/web/http/headers/link/index.html b/files/pt-br/web/http/headers/link/index.html new file mode 100644 index 0000000000..3df78e1a35 --- /dev/null +++ b/files/pt-br/web/http/headers/link/index.html @@ -0,0 +1,77 @@ +--- +title: Link +slug: Web/HTTP/Headers/Link +tags: + - Cabeçalho HTTP + - HTTP + - Link + - Rascunho + - Referencia +translation_of: Web/HTTP/Headers/Link +--- +
{{HTTPSidebar}}
+ +

O cabeçalho de entidade Link provém maneiras para serializar um ou mais links em cabeçalhos HTTP. Ele é semanticamente equivalente ao elemento HTML {{HTMLElement("link")}}.

+ +

Sintaxe

+ +
Link: < uri-reference >; param1=value1; param2="value2"
+ +
+
<uri-reference>
+
A referência da URI, precisa ser encapsulado entre < e >.
+
+ +

Parâmetros

+ +

O cabeçalho link contém parâmetros, os quais são separados com ; e são equivalentes aos atributos do elemento {{HTMLElement("link")}}.

+ +

Exemplos

+ +

A URI precisa ser encapsulado entre < e >:

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

Você pode especificar múltiplos links separados por vírgulas, por exemplo:

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

Especificações

+ + + + + + + + + + + + + + + + + + + + + +
EspecificaçãoStatusComentários
{{RFC(8288, "Link Serialisation in HTTP Headers", 3)}}IETF RFC
{{RFC(5988, "The Link Header Field", 5)}}IETF RFCDefinição inicial
+ +

Compatibilidade de navegador

+ + + +

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

+ +

Veja também

+ + -- cgit v1.2.3-54-g00ecf