【发布时间】:2023-05-20 09:27:01
【问题描述】:
Internet Explorer 6 VS1 不正确支持 gzip 压缩。
然而,它确实理解放气。
将applicationhost.config 中的方案名称从 gzip 更改为 deflate 是否足以解决此问题?
使用 deflate 代替 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>
相关链接:
- Deflate compression browser compatibility and advantages over GZIP
- http://www.vervestudios.co/projects/compression-tests/
- http://en.wikipedia.org/wiki/Internet_Explorer_6
- http://msdn.microsoft.com/en-us/library/ms690689(v=VS.90).aspx
- http://www.iis.net/ConfigReference/system.webServer/httpCompression
- http://support.microsoft.com/kb/837251
【问题讨论】:
标签: iis gzip internet-explorer-6 deflate