aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/status/301/index.html
blob: d68be46467db2f9380f8456c6c895a7a84ef86ed (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
---
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>{{Compat("http.status.301")}}</p>

<h2 id="更多信息可见">更多信息可见</h2>

<ul>
 <li>{{HTTPStatus("308")}}   永久重定向</li>
 <li>{{HTTPStatus("302")}} 找到, 暂时性转移</li>
</ul>