aboutsummaryrefslogtreecommitdiff
path: root/files/it/glossary/response_header/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/glossary/response_header/index.html')
-rw-r--r--files/it/glossary/response_header/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/files/it/glossary/response_header/index.html b/files/it/glossary/response_header/index.html
new file mode 100644
index 0000000000..ea0ff313fe
--- /dev/null
+++ b/files/it/glossary/response_header/index.html
@@ -0,0 +1,39 @@
+---
+title: Header di risposta
+slug: Glossary/Response_header
+tags:
+ - Glossário
+translation_of: Glossary/Response_header
+original_slug: Glossary/Header_di_risposta
+---
+<p>Un<strong> header di risposta</strong> è un {{glossary("header", "HTTP header")}} che può essere utilizzato in una risposta HTTP e che non fa riferimento al contenuto del messaggio. Gli header di risposta, come {{HTTPHeader("Age")}}, {{HTTPHeader("Location")}} o {{HTTPHeader("Server")}} sono usati per fornire un contesto della risposta più dettagliato.</p>
+
+<p>Non tutti gli header che compaiono in una risposta sono <em>header di risposta</em>. Ad esempio, l'header {{HTTPHeader("Content-Length")}} è un {{glossary("entity header")}} che fa riferimento alla dimensione del corpo del messaggio di risposta. Tuttavia queste entità sono chiamate solitamente header di risposta in questo contesto.</p>
+
+<p>Di seguito sono mostrati alcuni header di risposta dopo una richiesta {{HTTPMethod("GET")}} . Si noti che, strettamente parlando, gli header {{HTTPHeader("Content-Encoding")}} e {{HTTPHeader("Content-Type")}} sono {{glossary("entity headers")}}:</p>
+
+<pre>200 OK
+Access-Control-Allow-Origin: *
+Connection: Keep-Alive
+Content-Encoding: gzip
+Content-Type: text/html; charset=utf-8
+Date: Mon, 18 Jul 2016 16:06:00 GMT
+Etag: "c561c68d0ba92bbeb8b0f612a9199f722e3a621a"
+Keep-Alive: timeout=5, max=997
+Last-Modified: Mon, 18 Jul 2016 02:36:04 GMT
+Server: Apache
+Set-Cookie: mykey=myvalue; expires=Mon, 17-Jul-2017 16:06:00 GMT; Max-Age=31449600; Path=/; secure
+Transfer-Encoding: chunked
+Vary: Cookie, Accept-Encoding
+X-Backend-Server: developer2.webapp.scl3.mozilla.com
+X-Cache-Info: not cacheable; meta data too large
+X-kuma-revision: 1085259
+x-frame-options: DENY</pre>
+
+<h2 id="Scopri_di_più">Scopri di più</h2>
+
+<h3 id="Conoscenza_tecnica">Conoscenza tecnica</h3>
+
+<ul>
+ <li><a href="/en-US/docs/Web/HTTP/Headers">List of all HTTP headers</a></li>
+</ul>