aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/alt-svc/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/http/headers/alt-svc/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/http/headers/alt-svc/index.html')
-rw-r--r--files/zh-cn/web/http/headers/alt-svc/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/zh-cn/web/http/headers/alt-svc/index.html b/files/zh-cn/web/http/headers/alt-svc/index.html
new file mode 100644
index 0000000000..556209bf86
--- /dev/null
+++ b/files/zh-cn/web/http/headers/alt-svc/index.html
@@ -0,0 +1,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>