HTTP Status Codes

What is Status Code

Status Code tells browser of your customer instructions on what to do. Whether it is "Redirect user to a different page instruction" or "You don't have access to tihs page".

Also SEO engines are based on Status Codes. Which means that if you had a page https://yourstore.com/contact-us, and you want to change tihs page to https://yourstore.com/contact, you should create redirect rule with 301 status code. Google (and other search engines) will understand this change, and eventually change this url in their search results.

Status Codes

CodeNameExplanation

204

No Content

There is no content to send. Customer's browser will open main page of the store.

301

Moved Permanently

This page is moved permanently to a different URL. Customer's browser will open target URL page. SEO engines will change the page.

302

Found

This response code means that the URL of requested resource has been changed temporarily. Further changes in the URL might be made in the future.

Customer's browser will open target URL page. SEO engines will not change the page.

303

See Other

The server sent this response to direct the client to get the requested resource at another URI with a GET request.

307

Temporary Redirect

Same as 302, with minor differences.

403

Not Authorized

Customer does not have access to this page. Customer's browser will show "Not Authorized" message.

404

Not Found

The requested page does not exist. Customer's browser will show "Not found" message.

Last updated