blob: 5444daa2d6bec2b205d2fb0e8a94cc8a07546df5 (
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
|
---
title: 303 See Other
slug: Web/HTTP/Status/303
translation_of: Web/HTTP/Status/303
---
<div>{{HTTPSidebar}}</div>
<p>HTTP <strong>303 See Other</strong> 重定向状态码,通常作为 {{HTTPMethod("PUT")}} 或 {{HTTPMethod("POST")}} 操作的返回结果,它表示重定向链接指向的不是新上传的资源,而是另外一个页面,比如消息确认页面或上传进度页面。而请求重定向页面的方法要总是使用 {{HTTPMethod("GET")}}。</p>
<h2 id="状态">状态</h2>
<pre class="syntaxbox">303 See Other</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")}} <code>Found</code>, the temporary redirect</li>
</ul>
|