blob: 39adbdd0f5cdc5680fbe21cd1800cf0ac1a14078 (
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
|
---
title: 503 Service Unavailable
slug: Web/HTTP/Status/503
tags:
- 响应状态码
- 服务器错误
- 状态码
translation_of: Web/HTTP/Status/503
---
<div>{{HTTPSidebar}}</div>
<p><code><strong>503</strong></code><strong><code> Service Unavailable</code></strong> 是一种HTTP协议的服务器端错误状态代码,它表示服务器尚未处于可以接受请求的状态。</p>
<p>通常造成这种情况的原因是由于服务器停机维护或者已超载。注意在发送该响应的时候,应该同时发送一个对用户友好的页面来解释问题发生的原因。该种响应应该用于临时状况下,与之同时,在可行的情况下,应该在 {{HTTPHeader("Retry-After")}} 首部字段中包含服务恢复的预期时间。</p>
<p>缓存相关的首部在与该响应一同发送时应该小心使用,因为 503 状态码通常应用于临时状况下,而此类响应一般不应该进行缓存。</p>
<h2 id="状态">状态</h2>
<pre class="syntaxbox">503 Service Unavailable</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", "503 Service Unavailable" , "6.6.4")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("http.status.503")}}</p>
<h2 id="相关内容">相关内容</h2>
<ul>
<li>{{HTTPHeader("Retry-After")}}</li>
</ul>
|