常见问题 (FAQ)

What is an HTTP Status Code?
An HTTP status code is a 3-digit response from a server indicating the result of the client's request. It lets the browser know whether the request was successful, redirected, or failed due to an error.
What does a 404 Not Found error mean?
A 404 error indicates that the server cannot find the requested resource. This is typically caused by a broken link, typo in the URL, or the page being deleted.
What is the difference between 4xx and 5xx errors?
4xx errors (like 400 or 404) indicate that the problem was caused by the client (e.g. bad request, wrong URL, unauthorized). 5xx errors (like 500 or 502) mean the server itself encountered an error and failed to fulfill a valid request.
How many categories of HTTP status codes are there?
There are five standard categories: 1xx (Informational), 2xx (Successful), 3xx (Redirection), 4xx (Client Error), and 5xx (Server Error).