[Mod_gzip] Caching working with mozilla but not IE
Matt Dickinson
mod_gzip@lists.over.net
Sat, 10 Jan 2004 17:34:21 -0600
Auz wrote:
> I've run into this before. IE refuses to cache images if they're sent
> with a Vary header, which mod_gzip sends. The solution (from this
> post on the list:
> http://lists.over.net/pipermail/mod_gzip/2002-December/006776.html)
> is to switch off the Vary header explicitly for images using this in
> your config:
>
> <Files ~ "\.(jpg|gif|png)$">
> mod_gzip_send_vary Off
> </Files>
Thanks!
I thought I had it covered by
<Files \.gif$>
mod_gzip_on No
</Files>
<Files \.jpg$>
mod_gzip_on No
</Files>
But I guess it didn't stop mod_gzip from touching those filetypes.
Thanks,
Matt