aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/http/status/303/index.html
blob: 2430ef3035f520cfe58086b69d229248460770ac (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
---
title: 303 See Other
slug: Web/HTTP/Status/303
tags:
  - HTTP
  - Код ответа
  - Перенаправление
translation_of: Web/HTTP/Status/303
---
<div>{{HTTPSidebar}}</div>

<div></div>

<p>HTTP код перенаправления <code><strong>303</strong></code><strong><code> See Other</code></strong> обычно отправляется в результате {{HTTPMethod("PUT")}} или {{HTTPMethod("POST")}} запроса и указывает, что перенаправление производится не на новый (только что загруженный) ресурс, а на другую страницу, например, страницу подтверждения или страницу с результатами загрузки. Метод, используемый для отображения страницы, на которую производится перенаправление - всегда {{HTTPMethod("GET")}}.</p>

<h2 id="Статус">Статус</h2>

<pre class="syntaxbox">303 See Other</pre>

<h2 id="Пример">Пример</h2>

<h3 id="Запрос_клиента">Запрос клиента</h3>

<pre class="line-numbers language-html"><code class="language-html">POST /api/items/delete HTTP/1.1
Host: www.example.org</code></pre>

<h3 id="Ответ_сервера">Ответ сервера</h3>

<pre>HTTP/1.1 303 See Other
Location: /confirmation</pre>

<h2 id="Спецификации">Спецификации</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Спецификация</th>
   <th scope="col">Название</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="Совместимость_с_браузером">Совместимость с браузером</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.status.303")}}</p>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>{{HTTPStatus("302", "302 Found")}}, временное перенаправление</li>
</ul>