When you visit a website, your browser asks the server for a page. The server replies with a http status code a short number that shows if everything worked or if there was a problem.
Table of Contents
Here are some important HTTP Status Codes
100 Continue
The server received your first part of the request and says “go ahead, continue.”
Example: When uploading a big file, the server checks the beginning and tells you to keep sending the rest.
200 OK
The request was successful, and the server sent back the right page.
Example: You click on a blog post, and it loads normally without any problems.
201 Created
The server successfully created something new for you.
Example: You sign up on a website, and your new account is created.
301 Moved Permanently
The page you asked for has a new permanent address.
Example: You visit an old link, and it redirects you automatically to the new correct page.
302 Found
The page temporarily moved somewhere else, but it might come back.
Example: You are taken to a special event page for a short time, then later it returns to normal.
400 Bad Request
The server couldn’t understand what you asked because the request was wrong.
Example: You try to search using strange characters, and the website gives you an error.
401 Unauthorized
You need to log in before you can access the page.
Example: You try to open your account settings without logging in, and the site asks for your username and password.
403 Forbidden
The server understood your request, but it refuses to allow you to access the page.
Example: You try to open an admin page without having the right permissions, and the website blocks you with a “403 Forbidden” message.
404 Not Found
The page you asked for doesn’t exist.
Example: You click a broken link, and the website shows “404 Page Not Found.”
500 Internal Server Error
Something went wrong on the server side, not your fault.
Example: You visit a page, but due to a bug or mistake on the server, you see an error message.
503 Service Unavailable
The server is too busy or under maintenance and cannot handle your request right now.
Example: During a big sale, a shopping site crashes because too many people visit at once.
In short:
HTTP status codes are like a small secret conversation between your browser and the website. They explain if everything is working or if something needs fixing.
What does the 404 Not Found error HTTP status mean?
The 404 Not Found error appears when the page or resource you are looking for does not exist or cannot be found on the server. This might happen if the URL is typed incorrectly, the page was removed, or the link is broken.
Tip: Double-check the URL or search for the page using the website’s search function. If the problem persists, the page may have been deleted.
What does the 410 Gone error HTTP status mean?
The 410 Gone error indicates that the resource you’re trying to access is no longer available and will not be coming back. Unlike a 404 error, which can be temporary, a 410 error means the page has been permanently removed.
Tip: If you encounter this error, it’s best to look for alternative resources on the website, as the page is no longer available.
If you’re interested in more tips on securing your website, check out this article on 5 Most Important Cloudflare WAF Rules for Securing WordPress Websites to enhance your website’s security even further!