HTTP 403

Last updated

HTTP 403 is an HTTP status code meaning access to the requested resource is forbidden. The server understood the request, but will not fulfill it, if it was correct. [1]

Contents

Specifications

HTTP 403 provides a distinct error case from HTTP 401; while HTTP 401 is returned when the client has not authenticated, and implies that a successful response may be returned following valid authentication, HTTP 403 is returned when the client is not permitted access to the resource despite providing authentication such as insufficient permissions of the authenticated account. [a]

Error 403: "The server understood the request, but is refusing to authorize it." [2] :§15.5.4

Error 401: "The 401 (Unauthorized) status code indicates that the request has not been applied because it lacks valid authentication credentials for the target resource." [2] :§15.5.2

The Apache web server returns 403 Forbidden in response to requests for URL [3] paths that corresponded to file system directories when directory listings have been disabled in the server and there is no Directory Index directive to specify an existing file to be returned to the browser. Some administrators configure the Mod proxy extension to Apache to block such requests and this will also return 403 Forbidden. Microsoft IIS responds in the same way when directory listings are denied in that server. In WebDAV, the 403 Forbidden response will be returned by the server if the client issued a PROPFIND request but did not also issue the required Depth header or issued a Depth header of infinity. [3]

Causes

A 403 status code can occur for the following reasons: [4]

Examples

MediaWiki error message English Wikipedia 403.png
MediaWiki error message

Client request: [5]

GET/securedpage.phpHTTP/1.1Host:www.example.org

Server response: [5]

HTTP/1.1403ForbiddenContent-Type:text/html<html><head><title>403 Forbidden</title></head><body><h1>Forbidden</h1><p>You don't have permission to access /securedpage.php on this server.</p></body></html>

See also

Notes

  1. See #Substatus error codes for IIS for possible reasons of why a webserver may refuse to fulfill a request.

References

  1. "403 Forbidden - HTTP | MDN". developer.mozilla.org. 2025-03-13. Retrieved 2025-05-16.
  2. 1 2 R. Fielding; M. Nottingham; J. Reschke, eds. (June 2022). HTTP Semantics. Internet Engineering Task Force. doi: 10.17487/RFC9110 . ISSN   2070-1721. STD 97. RFC 9110.Internet Standard 97. Obsoletes RFC  2818, 7230, 7231, 7232, 7233, 7235, 7538, 7615 and 7694. Updates RFC  3864.
  3. 1 2 "HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)". IETF. June 2007. Archived from the original on March 3, 2016. Retrieved January 12, 2016.
  4. HTTP status code 403 How do I solve the problem with the 403 status code?
  5. 1 2 Example of "Client request" and "Server response" for HTTP status code 403