aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/via/index.html
blob: 8fc87f691955ebcd44b4453ab204e89292538f86 (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: Via
slug: Web/HTTP/Headers/Via
tags:
  - 代理
  - 循环请求
  - 首部
translation_of: Web/HTTP/Headers/Via
---
<p>{{HTTPSidebar}}</p>

<p><code><strong>Via</strong></code> 是一个通用首部,是由代理服务器添加的,适用于正向和反向代理,在请求和响应首部中均可出现。这个消息首部可以用来追踪消息转发情况,防止循环请求,以及识别在请求或响应传递链中消息发送者对于协议的支持能力。</p>

<table class="properties">
	<tbody>
		<tr>
			<th scope="row">Header type</th>
			<td>{{Glossary("General header")}}</td>
		</tr>
		<tr>
			<th scope="row">{{Glossary("Forbidden header name")}}</th>
			<td>yes</td>
		</tr>
	</tbody>
</table>

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

<pre>Via: [ &lt;protocol-name&gt; "/" ] &lt;protocol-version&gt; &lt;host&gt; [ ":" &lt;port&gt; ]
or
Via: [ &lt;protocol-name&gt; "/" ] &lt;protocol-version&gt; &lt;pseudonym&gt;
</pre>

<h2 id="指令">指令</h2>

<dl>
	<dt>&lt;protocol-name&gt;</dt>
	<dd>可选。所使用的协议名称,如 "HTTP"。</dd>
	<dt>&lt;protocol-version&gt;</dt>
	<dd>所使用的协议版本号, 例如 "1.1"。</dd>
	<dt>&lt;host&gt; and &lt;port&gt;</dt>
	<dd>公共代理的URL及端口号。</dd>
	<dt>&lt;pseudonym&gt;</dt>
	<dd>内部代理的名称或别名。</dd>
</dl>

<h2 id="示例">示例</h2>

<pre>Via: 1.1 vegur
Via: HTTP/1.1 GWA
Via: 1.0 fred, 1.1 p.example.net
</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
	<tbody>
		<tr>
			<th scope="col">Specification</th>
			<th scope="col">Title</th>
		</tr>
		<tr>
			<td>{{RFC("7230", "Via", "5.7.1")}}</td>
			<td>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</td>
		</tr>
	</tbody>
</table>

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

<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("http.headers.Via")}}</p>

<h2 id="相关内容">相关内容</h2>

<ul>
	<li>{{HTTPHeader("X-Forwarded-For")}}</li>
	<li><a href="https://github.com/heroku/vegur">Heroku 的代理库 Vegur</a></li>
</ul>