blob: 470aa7936638aea1bca09f9dcad6d50b1ad3212c (
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
|
---
title: 403 Forbidden
slug: Web/HTTP/Status/403
tags:
- Client-Fehler
- Clientfehler
- HTTP
- HTTP-Statuscode
- Statuscode
translation_of: Web/HTTP/Status/403
---
<p>{{HTTPSidebar}}</p>
<p>Der HTTP <strong><code>403 Forbidden</code></strong> Statuscode zeigt an, dass der Server die Anfrage zwar verstanden hat, aber sich weigert, sie zuzulassen.</p>
<p>Dieser Status ist {{HTTPStatus("401")}} ähnlich, aber ein erneutes Anmelden wird am Ergebnis nichts ändern. Der Zugriff ist dauerhaft verboten und liegt an der Anwendungslogik, wie etwa unzureichenden Rechten für eine Ressource.</p>
<h2 id="Status">Status</h2>
<pre class="syntaxbox">403 Forbidden</pre>
<h2 id="Beispielantwort">Beispielantwort</h2>
<pre>HTTP/1.1 403 Forbidden
Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Titel</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="Browserkompatibilität">Browserkompatibilität </h2>
<p>{{Compat("http.status.403")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{HTTPStatus("401")}}</li>
</ul>
|