blob: 58547941f5cc07a9f96de5480f5e65858fcd91d1 (
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
|
---
title: 203 Non-Authoritative Information
slug: Web/HTTP/Status/203
tags:
- 代理服务器
- 响应状态码
- 警告码
- 转换
translation_of: Web/HTTP/Status/203
---
<div>{{HTTPSidebar}}</div>
<p>在 HTTP 协议中,响应状态码 <strong><code>203 Non-Authoritative Information</code></strong> 表示请求已经成功被响应,但是获得的负载与源头服务器的状态码为 {{HTTPStatus("200")}} (<code>OK</code>)的响应相比,经过了拥有转换功能的 {{Glossary("Proxy server", "proxy")}} (代理服务器)的修改。</p>
<p>The <code>203</code> 状态码有点类似于 {{HTTPHeader("Warning")}} 首部的 <code><a href="/en-US/docs/Web/HTTP/Headers/Warning#Warning_codes">214</a></code>(Transformation Applied)警告码,后者的优势在于可以应用于任何状态码的响应之中。</p>
<h2 id="状态">状态</h2>
<pre class="syntaxbox">203 Non-Authoritative Information</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
<tr>
<td>{{RFC("7231", "203 Non-Authoritative Information" , "6.3.4")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="相关内容">相关内容</h2>
<ul>
<li>{{HTTPStatus("200")}}</li>
<li>{{Glossary("Proxy server")}}</li>
<li>{{HTTPHeader("Warning")}}</li>
</ul>
|