views:

12

answers:

0

Internet explorer 6 VS1 doesn't support gzip compression correctly. It does however understand deflate. Is it sufficient to change the scheme name in applicationhost.config from gzip to deflate to fix this issue? Are there any downsides to using deflate instead of gzip?

<!-- c:\windows\system32\inetsrv\config\applicationhost.config -->
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
    <!-- changed name="gzip" to name="deflate" -->
    <scheme name="deflate" dll="%Windir%\system32\inetsrv\gzip.dll" />
    <dynamicTypes>
        [...]
    </dynamicTypes>
    <staticTypes>
        [...]
    </staticTypes>
</httpCompression>

Related links: