aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/alt-svc/index.html
blob: 556209bf864069cea8ca51d10b4f2c7771c1480a (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: Alt-Svc
slug: Web/HTTP/Headers/Alt-Svc
tags:
  - HTTP
  - HTTP Header
translation_of: Web/HTTP/Headers/Alt-Svc
---
<p><strong><code style="white-space: nowrap;">Alt-Svc</code></strong> 全称为“Alternative-Service”,直译为“备选服务”。该头部列举了当前站点备选的访问方式列表。一般用于在提供 “QUIC” 等新兴协议支持的同时,实现向下兼容。</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">Alt-Svc: clear
Alt-Svc: <em>&lt;service-list&gt;</em>; ma=<em>&lt;max-age&gt;
</em>Alt-Svc:<em> &lt;service-list&gt;</em>; ma=<em>&lt;max-age&gt;</em>; persist=1
</pre>

<dl>
 <dt><code>&lt;service-list&gt;</code></dt>
 <dd>使用分号隔离的访问方式列表,格式形如:<code><em>&lt;service-name&gt;</em>="<em>&lt;host-name&gt;</em>:<em>&lt;port-number&gt;</em>"</code>。这里的<code><em>&lt;service-name&gt;</em></code>应当是一个有效的 {{Glossary("ALPN")}} 标识符。</dd>
 <dt><code>&lt;max-age&gt;</code>{{Optional_Inline}}</dt>
 <dd>当前访问方式的有效期,超过该时间后,服务端将不保证该访问方式依旧可用,客户端应当重新获取更新后的 Alt-Svc 列表。单位为秒,默认值为 24 小时(86400)。</dd>
 <dt><code>persist</code>{{Optional_Inline}}</dt>
 <dd>可选参数,用于标识当前访问方式在网络环境改变时或者会话间始终保持。</dd>
 <dd></dd>
</dl>

<h2 id="说明">说明</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">说明</th>
   <th scope="col">状态</th>
   <th scope="col">描述</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{RFC(7838)}}</td>
   <td><span class="spec-RFC">IETF RFC</span></td>
   <td>初始化定义。</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<div class="hidden">本文中兼容性说明列表由结构化数据自动生成。如果您想为数据源贡献修改,请参阅 <a class="external external-icon" href="https://github.com/mdn/browser-compat-data" rel="noopener">https://github.com/mdn/browser-compat-data</a> 并提交 PR。</div>

<p>{{Compat("http.headers.Alt-Svc")}}</p>

<h2 id="引用">引用</h2>

<ul>
 <li><a href="/en-US/docs/Web/HTTP/Basics_of_HTTP/Identifying_resources_on_the_Web">Identifying resources on the Web</a>[在Web世界标记资源]</li>
</ul>