With Apache compressing the cached documents in the dispatcher, the ETag is set like:
ETag: "796-56562d1294cfd-gzip"
and Apache compression is enabled with:
AddOutputFilterByType DEFLATE "image/svg+xml"
But when it is compared against the cached file, it always returns a 200 instead of a 304.
The dispatcher configuration documentation mentions enabling Apache compression in this way:
Configuring Dispatcher
But it breaks the 304 Not Modified functionality. How can Apache compression and dispatcher caching be used together without breaking this feature?
I'm using dispatcher module 4.2.3 and Apache 2.4.6.
Thanks.