gilly3
gilly3

Reputation: 91637

Static content not gzipped to IE9 from IIS7

I've enabled gzip compression in IIS using the config settings specified in this answer.

When I request a text file using Firefox, I can see in Firebug that the response is gzipped:

Firebug gzip request/response headers

But when I request the same text file using IE9, the dev tools show it is not gzipped:

IE Dev tools gzip request headers IE Dev tools gzip response headers

Why is IIS not sending the txt file compressed? Am I missing some IIS setting? Is my browser misconfigured?

Upvotes: 6

Views: 756

Answers (1)

Claudio Redi
Claudio Redi

Reputation: 68440

I'd compare both requests using Fiddler since IE dev tools doesn't seem to be showing all response headers

Upvotes: 8

Related Questions