[Mod_gzip] "mod_gzip_send_vary=Yes" disables caching on IE?
(1.3.26.1a)
Todd Vierling
mod_gzip@lists.over.net
Sun, 8 Dec 2002 01:52:59 -0500 (EST)
On Sat, 7 Dec 2002, Jordan Russell wrote:
: But then, as usual, if I add in gzip encoding, IE caches the page just fine:
:
: header("Content-Encoding: gzip");
: header("Vary: Content-Encoding");
: header("Expires: Mon, 08 Dec 2003 00:00:00 GMT");
: echo gzencode("Hi");
What about if you explicitly use:
header("Content-Encoding: identity");
header("Vary: Content-Encoding");
header("Expires: Mon, 08 Dec 2003 00:00:00 GMT");
echo "Hi";
? See the "identity", uncompressed, encoding.
Note that this is *NOT* the same test that Slava is requesting, as I did not
put "Vary: *" up there (which is likely to blow away caches anyway).
--
-- Todd Vierling <tv@pobox.com>