aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/http/status/301/index.html
blob: 8fe00054eee8528a5464503810f4eec11bb0cfe0 (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
---
title: 301 Moved Permanently
slug: Web/HTTP/Status/301
translation_of: Web/HTTP/Status/301
---
<div>{{HTTPSidebar}}</div>

<p>HTTP <code><strong>301 Moved Permanently</strong></code> 重定向回應碼代表所請求的資源已經被明確移動到 {{HTTPHeader("Location")}} 標頭所指示的 URL。瀏覽器會重新導向到此頁面,而搜尋引擎則會更新該資源的連結。用 SEO 的話來說,就是連結養分(link-juice)把你送到了新的 URL 去。</p>

<p>儘管規範要求當執行重新導向時,請求方法 (以及主體) 不應該被更動,但並非所有的用戶代理皆遵循它 -- 你依然可以找到具有此類漏洞的軟體。因此,推薦只使用 <code>301</code> 回應碼作為 {{HTTPMethod("GET")}}{{HTTPMethod("HEAD")}} 方法的回應, 另外使用 {{HTTPStatus("308", "308 Permanent Redirect")}} 作為 {{HTTPMethod("POST")}} 方法的替代,因為請求方法的更動在此狀態中是被明確禁止的。</p>

<h2 id="狀態">狀態</h2>

<pre class="syntaxbox">301 Moved Permanently</pre>

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

<h3 id="用戶端請求">用戶端請求</h3>

<pre>GET /index.php HTTP/1.1
Host: www.example.org</pre>

<h3 id="伺服端回應">伺服端回應</h3>

<pre>HTTP/1.1 301 Moved Permanently
Location: http://www.example.org/index.asp</pre>

<h2 id="規範">規範</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">規範</th>
   <th scope="col">標題</th>
  </tr>
  <tr>
   <td>{{RFC("7231", "301 Moved Permanently" , "6.4.2")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
  </tr>
 </tbody>
</table>

<h2 id="瀏覽器相容性">瀏覽器相容性</h2>



<p>{{Compat("http.status.301")}}</p>

<h2 id="參見">參見</h2>

<ul>
 <li>{{HTTPStatus("308", "308 Permanent Redirect")}}</li>
 <li>{{HTTPStatus("302", "302 Found")}}, 臨時重新導向</li>
</ul>