diff options
Diffstat (limited to 'files/pt-br/web/http/status/501/index.html')
-rw-r--r-- | files/pt-br/web/http/status/501/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/pt-br/web/http/status/501/index.html b/files/pt-br/web/http/status/501/index.html new file mode 100644 index 0000000000..9e6f51a3e6 --- /dev/null +++ b/files/pt-br/web/http/status/501/index.html @@ -0,0 +1,46 @@ +--- +title: 501 Not Implemented +slug: Web/HTTP/Status/501 +translation_of: Web/HTTP/Status/501 +--- +<div>{{HTTPSidebar}}</div> + +<p>O código de resposta HTTP <code><strong>501 Not Implemented</strong></code> indica que o servidor não suporta a funcionalidade requerida para completar a requisição. Esta é a resposta apropriada para quando o servidor não reconhece o método requisitado e não tem capacidade de suporta-lo para nenhum recurso. Os únicos métodos de requisição que os servidores suportam obrigatóriamente ( e, portanto, isso não deve retornar este código) são {{HTTPMethod("GET")}} e {{HTTPMethod("HEAD")}}.</p> + +<div class="note"> +<p><strong>Notas:</strong></p> + +<ul> + <li>A 501 error is not something you can fix, but requires a fix by the web server you are trying to access.</li> + <li>Uma resposta 501 é cacheada por padrão, ou seja, a menos que os cabeçalhos de cache indiquem outra forma.</li> +</ul> +</div> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox">501 Not Implemented</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Título</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{RFC("7231", "501 Not Implemented" , "6.6.2")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_entre_Navegadores">Compatibilidade entre Navegadores</h2> + +<p>The information shown below has been pulled from MDN's GitHub (<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>).</p> + +<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.status.501")}}</p> |