diff options
Diffstat (limited to 'files/pt-br/web/http/status/303/index.html')
-rw-r--r-- | files/pt-br/web/http/status/303/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/pt-br/web/http/status/303/index.html b/files/pt-br/web/http/status/303/index.html new file mode 100644 index 0000000000..7585f8f04c --- /dev/null +++ b/files/pt-br/web/http/status/303/index.html @@ -0,0 +1,46 @@ +--- +title: 303 See Other +slug: Web/HTTP/Status/303 +tags: + - Código de Status HTTP + - HTTP + - Redirecionamento + - Referencia +translation_of: Web/HTTP/Status/303 +--- +<p>{{HTTPSidebar}}</p> + +<p>O código de resposta de status de redirecionamento do HyperText Transfer Protocol (HTTP) <code><strong>303 See Other</strong></code> indica que o direcionamento não une a um recurso carregado novo, mas a outra página, com uma página de confirmação ou de progresso de carregamento. Este código de resposta normalmente é retornado como resultado de um {{HTTPMethod("PUT")}} ou {{HTTPMethod("POST")}}. O método usado para mostrar esta página redirecionada é sempre {{HTTPMethod("GET")}}. </p> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox">303 See Other</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Título</th> + </tr> + <tr> + <td>{{RFC("7231", "303 See Other" , "6.4.4")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td> + </tr> + </tbody> +</table> + +<h2 id="Compatilibilidade_de_navegador">Compatilibilidade de navegador</h2> + +<p>A informação mostrada abaixo foi retirada do Github da MDN (<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>).</p> + +<p class="hidden">A tabela de comaptibilidade nesta página é gerada de um dado estruturado. Se você não quiser contribuir com os dados, por favor verifique a página <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e mande-nos uma pergunta.</p> + +<p>{{Compat("http.status.303")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPStatus("302")}} <code>Found</code>, the temporary redirect</li> +</ul> |