aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/http/status/301/index.html
blob: 2e5488202f72ea86949ea266b918ef5a68b76a95 (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
---
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로 완전히 옮겨졌다는 것을 나타낸다. 브라우저는 이 페이지로 리다이렉트하고, 검색 엔진은 해당 리소스로 연결되는 링크를 갱신한다[검색엔진 최적화의 관점에서는 '원 콘텐츠가 새로운 URL로 옮겨졌다'(the link-juice is sent to the new URL)고 한다].</p>

<p>명세에서는 리다이렉트를 수행할 때 메소드(와 응답 본문)이 바뀌어서는 안 된다고 명시하고 있지만, 모든 유저 에이전트가 이를 따르는 것은 아니며 이러한 잘못된 소프트웨어는 아직도 찾아볼 수 있다. 그러므로 <code>301</code> 코드는 {{HTTPMethod("GET")}}{{HTTPMethod("HEAD")}} 메소드의 응답으로만 사용하고, {{HTTPMethod("POST")}} 메소드에 대해서는 메소드 변경이 명시적으로 금지된 {{HTTPStatus("308")}} <code>Permanent Redirect</code>를 사용하는 것이 바람직하다.</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">Specification</th>
   <th scope="col">Title</th>
  </tr>
  <tr>
   <td>{{RFC("7231", "301 Redirect 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")}} <code>Permanent Redirect</code></li>
 <li>{{HTTPStatus("302")}} <code>Found</code>, 임시 리다이렉트</li>
</ul>