IIS doDynamicCompression 和浏览器回退

发布于 2024-12-22 21:41:26 字数 132 浏览 1 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房的律动 2024-12-29 21:41:26

当您的用户向服务器发送请求时,浏览器会发送一个标头 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文