413 Payload Too Large
The request body is larger than the server is willing or able to process.
What it means
HTTP 413 Payload Too Large (once called Request Entity Too Large) means the body of the request exceeds a size limit the server enforces. The server stops rather than try to handle something bigger than it allows, and it may include a Retry-After header if the limit is temporary.
When it happens
It happens when uploading a file bigger than the configured maximum, posting an oversized form or JSON payload, or hitting a body-size cap set on the web server, application, or a proxy in front of it.
How to fix it
- Reduce the size of the upload or request body, or split it into smaller parts.
- Raise the body-size limit on the server (for example client_max_body_size in Nginx, or upload_max_filesize in PHP) if larger payloads are legitimate.
- Check any reverse proxy or CDN in front of the origin for its own, lower size cap.
SEO impact
None for normal pages. It concerns large request bodies, which crawlers do not send when fetching pages.
Find out which of your URLs return 413
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.