aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/host/index.html
blob: a7264922d43cc989e1d0ed1474550dedaf74d819 (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
---
title: Host
slug: Web/HTTP/Headers/Host
tags:
  - header http 参考 host
translation_of: Web/HTTP/Headers/Host
---
<div>{{HTTPSidebar}}</div>

<p><strong>Host </strong>请求头指明了请求将要发送到的服务器主机名和端口号。</p>

<p>如果没有包含端口号,会自动使用被请求服务的默认端口(比如HTTPS URL使用443端口,HTTP URL使用80端口)。</p>

<p>所有HTTP/1.1 请求报文中必须包含一个<code>Host</code>头字段。对于缺少<code>Host</code>头或者含有超过一个<code>Host</code>头的HTTP/1.1 请求,可能会收到{{HTTPStatus("400")}}(Bad Request)状态码。</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>yes</td>
  </tr>
 </tbody>
</table>

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

<pre class="syntaxbox notranslate">Host: &lt;host&gt;:&lt;port&gt;
</pre>

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

<dl>
 <dt>&lt;host&gt;</dt>
 <dd>服务器的域名(用于虚拟主机)。</dd>
 <dt>&lt;port&gt; {{optional_inline}}</dt>
 <dd>服务器监听的 TCP 端口号。</dd>
</dl>

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

<pre class="notranslate">Host: developer.cdn.mozilla.net</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">标题</th>
  </tr>
  <tr>
   <td>{{RFC("7230", "Host", "5.4")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</td>
  </tr>
 </tbody>
</table>

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

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

<h2 id="参考">参考</h2>

<ul>
 <li>{{HTTPStatus("400")}}</li>
 <li>{{HTMLElement("base")}}</li>
</ul>