blob: d5a0e723ea6f9a295859d7cf5ef750966f302a1b (
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
|
---
title: Allow
slug: Web/HTTP/Headers/Allow
translation_of: Web/HTTP/Headers/Allow
---
<div>{{HTTPSidebar}}</div>
<p>La cabecera <code><strong>Allow</strong></code> enumera el conjunto de métodos admitidos por un recurso.</p>
<p>Esta cabecera debe ser enviada si el servidor responde con un estado {{HTTPStatus("405")}} <code>Method Not Allowed</code> para indicar cual metodo de peticion puede ser usado. Una cabecera <code>Allow</code> vacia indica que el recurso no permite ningún método de solicitud, que podría ocurrir temporalmente para un recurso determinado, por ejemplo.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>{{Glossary("Entity header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>no</td>
</tr>
</tbody>
</table>
<h2 id="Sintáxis">Sintáxis</h2>
<pre class="syntaxbox">Allow: <http-methods>
</pre>
<h2 id="Directivas">Directivas</h2>
<dl>
<dt><http-methods></dt>
<dd>La lista de métodos de solicitud HTTP permitidos.</dd>
</dl>
<h2 id="Ejemplo">Ejemplo</h2>
<pre>Allow: GET, POST, HEAD</pre>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Título</th>
</tr>
<tr>
<td>{{RFC("7231", "Allow", "7.4.1")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Vea_también">Vea también</h2>
<ul>
<li>{{HTTPStatus("405")}}</li>
<li>{{HTTPHeader("Server")}}</li>
</ul>
|