diff options
Diffstat (limited to 'files/pt-br/web/http/status/308/index.html')
-rw-r--r-- | files/pt-br/web/http/status/308/index.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/files/pt-br/web/http/status/308/index.html b/files/pt-br/web/http/status/308/index.html new file mode 100644 index 0000000000..7bf6837aab --- /dev/null +++ b/files/pt-br/web/http/status/308/index.html @@ -0,0 +1,50 @@ +--- +title: 308 Permanent Redirect +slug: Web/HTTP/Status/308 +tags: + - HTTP + - HTTP Status Code + - Redirecionamento +translation_of: Web/HTTP/Status/308 +--- +<div>{{HTTPSidebar}}</div> + +<p>O código de resposta do status de redirecionamento <code><strong>308 Redirecionamento Permanente</strong></code> do Protocolo de Transferência de Hipertexto (HTTP) indica que o recurso requisitado foi movido definitivamente para o URL dado pelo cabeçalho {{HTTPHeader("Localização")}}. O navegador redireciona para essa página e o motor de busca atualiza os seus links para o recurso (na linguagem 'SEO', é dito que o "suco do link" ('link-juice') é enviado à nova URL).</p> + +<p>O método de requisição e o corpo não será alterado, onde talvez o status {{HTTPStatus("301")}} seja modificado incorretamente para o método {{HTTPMethod("GET")}}.</p> + +<div class="note"> +<p><strong>Nota: </strong>Algumas aplicações Web podem usar o <code>308 Permanent Redirect</code> de forma não convencional e para outros propósitos. Por exemplo, Google Drive usa a resposta <code>308 Resume Incomplete</code> para indicar ao cliente quando um upload incompleto parou.<sup><a href="https://developers.google.com/drive/v3/web/manage-uploads#resumable">[1]</a></sup></p> +</div> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox">308 Redirecionamento Permanente</pre> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Title</th> + </tr> + <tr> + <td>{{RFC("7538", "308 Permanent Redirect" , "3")}}</td> + <td>The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect)</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + + + +<p>{{Compat("http.status.308")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPStatus("301", "301 Moved Permanently")}}</li> + <li>{{HTTPStatus("302", "302 Found")}}, o redirecionamento temporário</li> +</ul> |