TL;DR

Remember: 2xx success, 3xx redirects, 4xx client errors (fix the request), 5xx server errors (check the server). Most common: 404, 403, 429, 500, 502, 504.

Classes

RangeMeaning
1xxInformational
2xxSuccess
3xxRedirection
4xxClient error
5xxServer error

Common Codes

CodeMeaningDebug
200OKNormal
201Created-
204No Content-
301 / 302Permanent / temporary redirectCheck Location
304Not ModifiedCache hit
400Bad RequestRequest format/params
401UnauthorizedMissing/invalid token
403ForbiddenPermissions, firewall, WAF
404Not FoundPath/resource missing
405Method Not AllowedWrong method
429Too Many RequestsRate limited; retry later
500Internal Server ErrorCheck server logs
502Bad GatewayUpstream down
503Service UnavailableOverload/maintenance
504Gateway TimeoutUpstream timeout

Rules of Thumb

Sources

最后更新:2026-08-02