mod_deflate 支持的压缩编码
在我看来,Apache 2.2 中的 mod_deflate 将始终返回:
Content-Encoding: gzip
,而从不返回:
Content-Encoding: deflate
有人向我解释,尽管可能存在 deflate 算法,但 mod_deflate 是以文件格式命名的,其中算法可以是以下任意一种:
gzip、bzip。 pkzip
在这三个中,mod_deflate 提供了 gzip。
似乎 gzip 是网络浏览器中最流行和广泛支持的算法,但我知道一些网络服务器和代理确实返回 Content-Encoding: deflate。
除了模块名称的混乱之外,mod_deflate 真的只会返回 Content-Encoding: gzip 吗?
谢谢。
It seems to me, that mod_deflate in Apache 2.2 will always return:
Content-Encoding: gzip
and never:
Content-Encoding: deflate
It was explained to me, that although there may be a deflate algorithm, mod_deflate is named after a file-format, in which the algorithm could be any of:
gzip, bzip. pkzip
Of those three, mod_deflate provides gzip.
It seems as though gzip is the most popular and widely-supported algorithm in web browsers, but I know some web servers and proxies do return Content-Encoding: deflate.
Aside from the confusion of the module's name, it true that mod_deflate will only return Content-Encoding: gzip?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上 mod_deflate 仅支持 deflate。
The fact is mod_deflate supports only deflate.