blob: 70f45ea8b3974afd53448e086c226b2a2667f8de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
---
title: Host
slug: Web/HTTP/Headers/Host
tags:
- Cabecera
- HTTP
- Referencia
translation_of: Web/HTTP/Headers/Host
---
<div>{{HTTPSidebar}}</div>
<p>El encabezado de solicitud <code><strong>Host</strong></code> especifica el nombre de dominio del servidor (para hosting virtual), y (opcionalmente) el número de puerto TCP en el que el servidor esta escuchando.</p>
<p>Si no se provee un puerto, se usará el puerto por defecto para el servicio solicitado (e.j.: "80" para una URL HTTP).</p>
<p>El encabezado <code>Host</code> debe enviarse obligatoriamente en todas las solicitudes HTTP/1.1. Un código de error {{HTTPStatus("400")}} (Petición mala) debería enviarse a cualquier solicitud HTTP/1.1 que no contiene o contiene más de un encabezado <code>Host</code>.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>Encabezado de solicitud</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>sí</td>
</tr>
</tbody>
</table>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox">Host: <host>:<puerto>
</pre>
<h2 id="Directivas">Directivas</h2>
<dl>
<dt><host></dt>
<dd>el nombre de dominio del servidor (pata hosting virtual).</dd>
<dt><puerto> {{optional_inline}}</dt>
<dd>número de puerto TCP en el que el servidor está escuchando.</dd>
</dl>
<h2 id="Ejemplos">Ejemplos</h2>
<pre>Host: developer.mozilla.org</pre>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
<tr>
<td>{{RFC("7230", "Host", "5.4")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_del_navegador">Compatibilidad del navegador</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.headers.Host")}}</p>
<h2 id="Véase_también">Véase también</h2>
<ul>
<li>{{HTTPStatus("400")}}</li>
<li>{{HTMLElement("base")}}</li>
</ul>
|