414 URI Too Long
The requested URL is longer than the server is willing to interpret.
What it means
HTTP 414 URI Too Long means the request's URL exceeds the maximum length the server accepts. Servers cap URL length to protect against buffer overruns and abuse, and a request that blows past the cap is rejected outright.
When it happens
It happens when a form that should use POST is submitted with GET, stuffing a long query string into the URL, or when a request encodes a large amount of data into the URL instead of the body. It can also follow a redirect loop that keeps appending parameters.
How to fix it
- Switch large requests from GET to POST so the data travels in the body, not the URL.
- Trim unnecessary query parameters and shorten the URL.
- Raise the server's URL-length limit (such as large_client_header_buffers in Nginx) only if long URLs are genuinely needed.
- Check for a redirect loop that is growing the URL on each hop.
SEO impact
Negative if it hits real URLs. A page whose URL is too long to fetch cannot be crawled or indexed, so keep important URLs short and clean.
Find out which of your URLs return 414
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.