IIS doDynamicCompression 和浏览器回退
我想使用 IIS 的 doDynamicCompression 配置选项在我的控制器操作上启用 GZip 压缩。
问题是,如果我的一位用户使用不支持 GZip 的浏览器,会发生什么情况 - IIS 会检测到它并以未压缩的方式发送它吗?
I want to enable GZip compression on my controller actions using IIS's doDynamicCompression configuration option.
The question is what will happen if one of my users uses a browsers that doesnt support GZip - would IIS detect it and send it uncompressed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您的用户向服务器发送请求时,浏览器会发送一个标头 Accept-Encoding。
该标头向服务器指定浏览器接受的压缩方法。
例如“deflate,gzip”、“gzip”或什么都没有。
IIS 解析此标头以压缩或不压缩响应。
When your users send request to the serveur, the Browser send a header Accept-Encoding.
This header specifies to the server with compresssions methods are accepted by the Browser.
For exemple "deflate,gzip", "gzip" or nothing.
IIS parses this Header to compress or not the response.