I am accessing some web sites which are really really slow, and I would like to know if those sites are gzipped. Is there an easy way to find this out?

link|improve this question

65% accept rate
feedback

2 Answers

up vote 5 down vote accepted

If you're using Chrome, you can open the developer tools (in the wrench menu: Tools > Developer tools, or alternatively by pressing CtrlShiftI.

Once you have the developer tools open, you can click on the "Network" tab, and do a refresh on the page. If you then click on the top entry in the list and select "Headers" on the right side, it'll list all the response headers for the page.

If you find Content-Encoding: gzip in the list, then the page is gzip-compressed.

link|improve this answer
feedback

If you dont have Chrome installed here are some alternatives:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.