May 10, 2025 - 06:36
HTTP Status Messages Image
Server Management

HTTP Status Messages

Comments

HTTP Status Codes and Their Meanings

When a browser requests a service from a web server, an error may occur. These errors help you understand whether the issue is related to your site or the server. When troubleshooting, it's important to know the meanings of these status codes. Below is a compiled list of HTTP status messages. If you've encountered different ones, feel free to let me know.

1xx: Informational

STATUSDESCRIPTION
100 ContinueThe server has received the request headers, and the client should proceed to send the request body.
101 Switching ProtocolsThe server has agreed to switch protocols.
103 CheckpointUsed to resume PUT or POST requests that were previously aborted.

2xx: Success

STATUSDESCRIPTION
200 OKThe request has succeeded.
201 CreatedThe request has been fulfilled and a new resource has been created.
202 AcceptedThe request has been accepted but not yet processed.
204 No ContentThe request was successful but no content is returned.

3xx: Redirection

STATUSDESCRIPTION
301 Moved PermanentlyThe page has been permanently moved to another URL.
302 FoundThe page has been temporarily moved to another URL.
304 Not ModifiedThe content has not changed; cached version can be used.

4xx: Client Error

STATUSDESCRIPTION
400 Bad RequestThe request contains bad syntax.
401 UnauthorizedAuthentication is missing or has failed.
403 ForbiddenThe server is refusing to respond to the request.
404 Not FoundThe requested page could not be found.
405 Method Not AllowedThe method used is not supported by the target resource.

5xx: Server Error

STATUSDESCRIPTION
500 Internal Server ErrorGeneral error; the reason is not clear.
501 Not ImplementedThe request method is not supported by the server.
502 Bad GatewayAn invalid response was received from an upstream server (proxy error).
503 Service UnavailableThe server is currently unavailable (due to traffic, maintenance, etc.).
504 Gateway TimeoutThe server did not receive a timely response from the upstream server.

Related Articles

Comments ()

No comments yet. Be the first to comment!

Leave a Comment