How can I find out what is the http status code returned by the request to the url?

Is there a way to find out which code is returned by clicking on the URL?

I tried to find it, but all I find is a list of different codes. I am trying to find the http status code returned for several URLs that I work with, but I don’t know where to even start looking, where to find status codes.

Any help sent to me in the right direction would be a big help.

+4
source share
2 answers

You can use Fiddler or Firebug for this. There are literally hundreds of other tools and connections for viewing the original HTTP information.

For example, in Mozilla Firebug, you can go to Net and press F5 (refresh page) enter image description here

+2
source

Just use the Chrome browser. Hit F12 to get developer tools and see the network tab. Shows all status codes, whether it's a cache page, etc.

+1
source

Source: https://habr.com/ru/post/1403683/


All Articles