HTTP Status Code
The page opens to a 404 error. Did I write the wrong link, or was the deployment incomplete?
The page opens to a 404 error. Did I write the wrong link, or was the deployment incomplete?
/old-page404The server has no such resource/save500The server failed while handling it/dashboard401The identity was not accepted/home200This request succeededCheck server logs for this request; the page message cannot replace the status code
Select a row to see what it means: the first digit groups the outcome (2xx success, 3xx redirect, 4xx a request problem, 5xx a server failure), and the exact number narrows the cause.
Read the category first: The first digit groups the outcome: 2xx success, 3xx redirect, 4xx a request problem, 5xx a server failure. Seeing 500 means the frontend is not the first place to look.
The exact number narrows the cause: 404 means the resource was not found, 401 means the identity was not accepted, 400 means the request content did not match the contract. The difference decides the next check.
Where to find it: The browser Network panel records the status code of every request; debugging tools and errors reported by AI agents also print the number directly.
The page returns 404 and the form returns 500. Confirm both status codes in the browser Network panel, then judge each: whether 404 comes from a wrong address or a missing deployment, and where the server fails on 500. After the fix, resend and confirm 200.