blob: 012e13e3b71387084150b2f3569e1f75f7facdab (
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
|
---
title: 403 Forbidden
slug: Web/HTTP/Status/403
tags:
- 상태 코드
translation_of: Web/HTTP/Status/403
---
<div>{{HTTPSidebar}}</div>
<div>HTTP <code><strong>403 Forbidden</strong></code> 클라이언트 오류 상태 응답 코드는 서버에 요청이 전달되었지만, 권한 때문에 거절되었다는 것을 의미합니다.<br>
<br>
이 상태는 {{HTTPStatus("401")}}과 비슷하지만, 로그인 로직(틀린 비밀번호로 로그인 행위)처럼 반응하여 재인증(re-authenticating)을 하더라도 지속적으로 접속을 거절합니다.</div>
<h2 id="상태">상태</h2>
<pre class="syntaxbox notranslate">403 Forbidden</pre>
<h2 id="응답_예시">응답 예시</h2>
<pre class="notranslate">HTTP/1.1 403 Forbidden
Date: Wed, 21 Oct 2015 07:28:00 GMT
</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", "403 Forbidden" , "6.5.3")}}</td>
<td>HTTP/1.1: Semantics and Content</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> 를 방문하고 full-request를 보내주세요.</p>
<p>{{Compat("http/status", "403")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li>{{HTTPStatus("401")}}</li>
</ul>
|