It is possible that mod_deflate is configured incorrectly.
A typical mod_deflate configuration can be excluded from certain browsers based on user agent strings and can only be configured to compress certain types of files identified by their MIME type registered on the server.
You must compress all your HTML, CSS, and Javascript files, but not PNG, GIF, or JPEG files, and there are bugs with Netscape 4 that you may or may not want to consider. Try using the sample code from the documentation :
<Location />
Please note that you have already published the GIDZipTest GZIP test that does not check the associated Javascript and CSS files, while YSlow is in the GIDZipTest GZIP test, you need to test them individually.
I think it is also possible that your ISP is using a cache proxy server - transparent or not - which distorts or removes the Accept-Encoding: header. To rule this out for a reason, you can force someone to check it from your ISP.
Another thing to note is that when you compress files using gzip, you use bandwidth for CPU time. Above the lower compressive strengths, you reduce the return on bandwidth savings, but it requires a significant increase in processor time. Unfortunately, with a compression force of up to 9, you almost certainly spend too much CPU time on a very slight compression improvement - I would always recommend using force 1.
thomasrutter
source share