blob: 55fd47eb4d6092b2aca1b817763425ea501bd935 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
---
title: Retry-After
slug: Web/HTTP/Headers/Retry-After
tags:
- 响应首部
translation_of: Web/HTTP/Headers/Retry-After
---
<div>{{HTTPSidebar}}</div>
<p>在HTTP协议中,响应首部 <strong><code>Retry-After</code></strong> 表示用户代理需要等待多长时间之后才能继续发送请求。这个首部主要应用于以下两种场景:</p>
<ul>
<li>当与 {{HTTPStatus(503)}} (Service Unavailable,当前服务不存在) 响应一起发送的时候,表示服务下线的预期时长。</li>
<li>当与重定向响应一起发送的时候,比如 {{HTTPStatus(301)}} (Moved Permanently,永久迁移),表示用户代理在发送重定向请求之前需要等待的最短时间。</li>
</ul>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>{{Glossary("Response header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>no</td>
</tr>
</tbody>
</table>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">Retry-After: <http-date>
Retry-After: <delay-seconds>
</pre>
<h2 id="指令">指令</h2>
<dl>
<dt><http-date></dt>
<dd>表示在此时间之后可以重新尝试。参见 {{HTTPHeader("Date")}} 首部来获取HTTP协议中关于日期格式的细节信息。</dd>
<dt><delay-seconds></dt>
<dd>一个非负的十进制整数,表示在重试之前需要等待的秒数。</dd>
</dl>
<h2 id="示例">示例</h2>
<h3 id="对于计划内宕机时间的处理">对于计划内宕机时间的处理</h3>
<p>不同的客户端与服务器端应用对于 Retry-After 首部的支持依然不太一致。不过,一些爬虫程序,比如谷歌的爬虫程序 Googlebot,会遵循 Retry-After 首部的规则。将其与 {{HTTPStatus(503)}} (Service Unavailable,当前服务不存在) 响应一起发送有助于互联网引擎做出判断,在宕机结束之后继续对网站构建索引。</p>
<pre>Retry-After: Wed, 21 Oct 2015 07:28:00 GMT
Retry-After: 120
</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", "Retry-After", "7.1.3")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("http.headers.Retry-After")}}</p>
<h2 id="相关内容">相关内容</h2>
<ul>
<li><a href="https://webmasters.googleblog.com/2011/01/how-to-deal-with-planned-site-downtime.html">Google Webmaster blog: How to deal with planned site downtime</a></li>
<li>{{HTTPStatus(503)}} (Service Unavailable)</li>
<li>{{HTTPStatus(301)}} (Moved Permanently)</li>
</ul>
|