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>
相关链接:
最佳答案
似乎不能解决问题。 Internet Explorer 6 VS1 不支持 gzip 或 deflate。 :-(
至少在 iis 上使用动态压缩时不会。
关于iis - 将方案从 gzip 更改为 deflate 是否可以修复 ie6 不兼容问题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4021911/