aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/x-forwarded-proto/index.html
blob: 5e3b9e037ee0b12e8cfe2bcef19bbb4ca04f2d11 (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
---
title: X-Forwarded-Proto
slug: Web/HTTP/Headers/X-Forwarded-Proto
tags:
  - HTTP首部
  - 请求首部
  - 非标准化
translation_of: Web/HTTP/Headers/X-Forwarded-Proto
---
<div>{{HTTPSidebar}}</div>

<p><strong><code>X-Forwarded-Proto</code></strong> (XFP) 是一个事实上的标准首部,用来确定客户端与代理服务器或者负载均衡服务器之间的连接所采用的传输协议(HTTP 或 HTTPS)。在服务器的访问日志中记录的是负载均衡服务器与服务器之间的连接所使用的传输协议,而非客户端与负载均衡服务器之间所使用的协议。为了确定客户端与负载均衡服务器之间所使用的协议, X-Forwarded-Proto 就派上了用场。</p>

<p>HTTP 协议中的 {{HTTPHeader("Forwarded")}}  是这个消息首部的标准化版本。</p>

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

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

<pre class="syntaxbox">X-Forwarded-Proto: &lt;protocol&gt;
</pre>

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

<dl>
 <dt>&lt;protocol&gt;</dt>
 <dd>经过转发的传输协议 (http 或 https)。</dd>
</dl>

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

<pre>X-Forwarded-Proto: https</pre>

<p>其他非标准形式:</p>

<pre># Microsoft
Front-End-Https: on

X-Forwarded-Protocol: https
X-Forwarded-Ssl: on
X-Url-Scheme: https
</pre>

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

<p>不属于任何一份既有规范。这个消息首部的标准版本是 {{HTTPHeader("Forwarded")}}.</p>

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

<ul>
 <li>{{HTTPHeader("Forwarded")}}</li>
 <li>{{HTTPHeader("X-Forwarded-For")}}</li>
 <li>{{HTTPHeader("X-Forwarded-Host")}}</li>
</ul>