I read that some versions of IE6 have known issues with gzip compression, but I have found little explanation as to what these issues are. What are the known issues with gzip compression and IE6?
A:
Ive had an issue with IE6 and xml compression not working correctly:
http://notetodogself.blogspot.com/2007/03/flash-in-ie6-xml-compression-problem.html
mkoryak
2009-09-21 18:51:41
+6
A:
The problem is described in this answer.
If you are using Apache there is information at the Ultimate IE6 > Cheatsheet: How To Fix 25+ Internet Explorer 6 Bugs on how to work around it:
Some versions of IE6 prior to the XP SP2 update may have trouble with files that have been served using GZip compression. Fortunately, Seb Duggan found a IE6 GZip bug solution using ISAPI_Rewrite for Apache.
Seb's solution is to place the following code in the httpd.conf file in the ISAPI_Rewrite installation directory:
RewriteEngine on
RewriteCond %{HTTP:User-Agent} MSIE\ [5<span class="highlight">6</span>]
RewriteCond %{HTTP:User-Agent} !SV1
RewriteCond %{REQUEST_URI} \.(css|js)$
RewriteHeader Accept-Encoding: .* $1
Grant Wagner
2009-09-21 19:08:07
Is there an IE6 GZip bug solution for IIS 6? Thanks.
Henry
2010-05-09 20:21:58