aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/host/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/http/headers/host/index.html')
-rw-r--r--files/zh-cn/web/http/headers/host/index.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/files/zh-cn/web/http/headers/host/index.html b/files/zh-cn/web/http/headers/host/index.html
new file mode 100644
index 0000000000..a7264922d4
--- /dev/null
+++ b/files/zh-cn/web/http/headers/host/index.html
@@ -0,0 +1,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>