All HTTP status codes
HTTP 421 Misdirected Request
Client ErrorThe request reached a server that isn't configured to answer for that scheme/authority — common with HTTP/2 connection reuse across hostnames.
Defined in RFC 9110
Common causes
- HTTP/2 connection coalescing sending a request to the wrong virtual host
- SNI/SAN certificate covering hosts the backend doesn't actually serve
How to fix it
Retry on a new connection
Align certificates and server routing so coalescable hosts are truly served
Related status codes
400 Bad Request
The server can't or won't process the request because the client sent something malformed — invalid JSON, bad query parameters, broken headers or framing.
404 Not FoundThe server can't find anything at the requested URL. It says nothing about whether the resource ever existed or will exist.
Want to explore status codes interactively? Try the free HTTP Status Code Reference — search, categories and example responses, right in your browser.