421 Misdirected Request
The request reached a server that is not configured to produce a response for it.
What it means
HTTP 421 Misdirected Request means the request landed on a server that cannot answer for the requested host. It typically arises with HTTP/2 connection reuse: a client reuses a connection for a hostname that the server on the other end is not set up to serve, often because the TLS certificate covers it but the virtual-host configuration does not.
When it happens
It happens when HTTP/2 coalesces requests for several hostnames onto one connection and one of those hosts is not actually served there, or when a load balancer routes a request to a backend that has no configuration for the target domain.
How to fix it
- Have the client retry the request on a fresh connection rather than a reused one.
- Check that every hostname covered by the certificate is also configured as a served virtual host.
- Review load balancer and routing rules so requests reach a backend that can answer for the host.
SEO impact
Negative if it affects real pages. If crawlers receive 421 on a host you want indexed, those pages will not be fetched, so confirm your virtual-host and HTTP/2 setup is consistent.
Find out which of your URLs return 421
Paste a list of URLs and Sitewell checks the status code of every one at once — free and without signup.
Related codes
The server could not understand the request due to malformed syntax.
401 UnauthorizedAuthentication is required and has failed or not been provided.
402 Payment RequiredA largely reserved code intended for payment-gated access to a resource.
403 ForbiddenThe server understood the request but refuses to authorize it.
404 Not FoundThe server could not find the requested resource.
405 Method Not AllowedThe HTTP method used is not supported for the requested resource.
Related guides
A plain-English primer on HTTP status codes for SEOs: what the 2xx, 3xx, 4xx, and 5xx families mean, which ones affect rankings, and the codes worth knowing.
How to find and fix broken linksA practical walkthrough for finding broken links on your site, working out why each one breaks, and fixing them so visitors and crawlers stop hitting dead ends.