Every response a web server sends back carries a three-digit status code, telling the requester (usually a browser, but also search engine crawlers and other tools) what happened. The first digit places it in one of five categories.

The five categories

  • 1xx — Informational. Rare to see directly; the request is still being processed.
  • 2xx — Success. The request worked. `200 OK` is by far the most common.
  • 3xx — Redirection. The resource has moved; follow the Location header.
  • 4xx — Client error. Something about the request itself was wrong.
  • 5xx — Server error. The server failed to fulfill a valid request.

Codes genuinely worth knowing

CodeMeaningNotes
200OKStandard successful response
301Moved PermanentlySearch engines transfer ranking signals to the new URL
302Found (temporary redirect)The old URL should stay indexed, not be replaced
304Not ModifiedBrowser's cached copy is still valid
401UnauthorizedAuthentication required
403ForbiddenServer understood but refuses — often a permissions issue
404Not FoundNo resource at that URL
429Too Many RequestsRate limiting in effect
500Internal Server ErrorSomething broke server-side
503Service UnavailableServer temporarily can't handle the request (often overload or maintenance)

Why the distinction between 301 and 302 matters

This is one of the most common real-world mistakes: using a 302 (temporary) redirect for something that's actually permanent tells search engines the old URL might come back, so they're slower to fully transfer ranking signals to the new one. If a page has genuinely moved for good, a 301 is almost always the right choice.

How to check it yourself

Our HTTP Status Checker shows the exact status code, final URL after redirects, and response time for any URL. For a full redirect chain hop-by-hop, use Redirect Checker.