100 Continue
An interim response telling the client the initial part of a request was received and it should continue sending the body.
What it means
HTTP 100 Continue is a provisional response. When a client sends a request with an Expect: 100-continue header — usually before uploading a large body — the server replies with 100 to signal that the request line and headers are acceptable and the client may proceed to send the body. It is never the final response to a request.
When it happens
It happens during large POST or PUT uploads where a client wants confirmation that the server will accept the request before transmitting a potentially large payload. Most browsers and HTTP libraries handle it automatically, so you rarely see it directly.
How to fix it
- Nothing to fix — 100 Continue is normal protocol behaviour, not an error.
- If an upload stalls, confirm your client and any proxies handle the Expect: 100-continue header correctly.
- For misbehaving intermediaries, you can drop the Expect header so the client sends the body immediately.
SEO impact
None. Informational responses are invisible to search engines, which only index the final response a resource returns.
Find out which of your URLs return 100
Paste a list of URLs and Sitewell checks the status code of every one at once — free and without signup.
Related codes
The server agrees to switch the connection to a different protocol, such as upgrading from HTTP to WebSocket.
102 ProcessingA WebDAV interim response telling the client the server has accepted the request and is still working on it.
103 Early HintsAn interim response that lets the browser start fetching critical assets before the final page arrives.
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.