diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/http/status/301 | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/http/status/301')
-rw-r--r-- | files/zh-cn/web/http/status/301/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/zh-cn/web/http/status/301/index.html b/files/zh-cn/web/http/status/301/index.html new file mode 100644 index 0000000000..a46c5f21c7 --- /dev/null +++ b/files/zh-cn/web/http/status/301/index.html @@ -0,0 +1,46 @@ +--- +title: 301 Moved Permanently +slug: Web/HTTP/Status/301 +tags: + - HTTP + - 状态码 + - 重定向 +translation_of: Web/HTTP/Status/301 +--- +<div>{{HTTPSidebar}}</div> + +<p>HTTP <code><strong>301</strong></code><strong><code> 永久重定向</code></strong> 说明请求的资源已经被移动到了由 {{HTTPHeader("Location")}} 头部指定的url上,是固定的不会再改变。搜索引擎会根据该响应修正。</p> + +<p>尽管标准要求浏览器在收到该响应并进行重定向时不应该修改http method和body,但是有一些浏览器可能会有问题。所以最好是在应对{{HTTPMethod("GET")}} 或 {{HTTPMethod("HEAD")}} 方法时使用301,其他情况使用{{HTTPStatus("308")}} 来替代301。</p> + +<h2 id="状态">状态</h2> + +<pre class="syntaxbox">301 永久重定向</pre> + +<h2 id="标准">标准</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">标准</th> + <th scope="col">标题</th> + </tr> + <tr> + <td>{{RFC("7231", "301 永久重定向" , "6.4.2")}}</td> + <td>超文本传输协议 (HTTP/1.1): 语义和内容</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<p class="hidden">兼容性表格内容是从结构化的数据生成的. 如果你想贡献数据, 可以从这里检出仓库 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>,然后提交给我们.</p> + +<p>{{Compat("http.status.301")}}</p> + +<h2 id="更多信息可见">更多信息可见</h2> + +<ul> + <li>{{HTTPStatus("308")}} 永久重定向</li> + <li>{{HTTPStatus("302")}} 找到, 暂时性转移</li> +</ul> |