blob: e16745980857f26709427953c894c3982ca5d95f (
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: 403 Yasaklı
slug: Web/HTTP/Status/403
translation_of: Web/HTTP/Status/403
---
<div>{{HTTPSidebar}}</div>
<p>The HTTP <strong><code>403 Forbidden</code></strong> client error status response code indicates that the server understood the request but refuses to authorize it.</p>
<p>This status is similar to {{HTTPStatus("401")}}, but in this case, re-authenticating will make no difference. The access is permanently forbidden and tied to the application logic, such as insufficient rights to a resource.</p>
<h2 id="Status">Status</h2>
<pre class="syntaxbox notranslate">403 Forbidden</pre>
<h2 id="Example_response">Example response</h2>
<pre class="notranslate">HTTP/1.1 403 Forbidden
Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("7231", "403 Forbidden" , "6.5.3")}}</td>
<td>HTTP/1.1: Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.status.403")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li>{{HTTPStatus("401")}}</li>
<li><a href="https://kinsta.com/blog/403-forbidden-error/">403 forbidden error</a></li>
<li><a href="https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="noopener">HTTP/1.1: Status Code Definitions</a></li>
<li><a href="https://www.exai.com/blog/403-forbidden">403 forbidden </a></li>
</ul>
|