Reputation: 4107
I've followed the instructions to implement compression of dynamic content in IIS set out in this question.
When I send a request, I cannot see any evidence of the response being gzipped:
Version of IIS is 7.5
Is there anything obvious I should be checking to troubleshoot this?
Upvotes: 3
Views: 192
Reputation: 1768
It's hard to tell without seeing any settings or the request, but you should probably double-check that you have the correct mime types set up for the file and that your request is sending the correct accept-encoding header. It should resemble:
Accept-Encoding: gzip, deflate
Upvotes: 1