HTTP 状态码解释器
解释 HTTP 状态码。了解每个状态码的含义和使用场景。
搜索状态码
常见状态码
200OK
请求成功。
201Created
请求成功并创建了新资源。
204No Content
服务器成功处理了请求,但不返回任何内容。
301Moved Permanently
请求资源的 URL 已永久更改。
302Found
请求资源的 URL 已临时更改。
304Not Modified
自上次请求以来,资源未被修改。
400Bad Request
由于客户端错误,服务器无法处理请求。
401Unauthorized
需要身份验证,但验证失败或未提供。
403Forbidden
服务器理解请求但拒绝授权。
404Not Found
服务器找不到请求的资源。
500Internal Server Error
服务器遇到意外情况。
502Bad Gateway
服务器作为网关时收到了无效响应。
503Service Unavailable
服务器暂时无法处理请求。
功能介绍
The HTTP Status Code Explainer tool describes what each HTTP status code means and when it is typically used. It is helpful for debugging APIs and understanding server responses.
什么时候用这个工具?
Use this tool whenever you encounter an unfamiliar status code in logs, browser devtools, or API responses.
使用步骤
1
Enter a status code
Type a numeric HTTP status code like 200, 301, 404, or 500.
2
Read the explanation
See a short description of the code, its category, and common usage scenarios.
使用示例
Understanding 4xx vs 5xx errors
Look up codes like 400, 403, 404, or 500 to see whether the problem is likely on the client side or server side.
