IIS 动态压缩和 HttpHandlers
有谁知道是否可以使用 IIS 动态内容压缩< /a> 压缩 HttpHandler 的输出(.ashx)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道是否可以使用 IIS 动态内容压缩< /a> 压缩 HttpHandler 的输出(.ashx)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
当然。确保动态内容类型列表中包含正确的内容类型(它们是在服务器级别设置的,您可以通过 IIS 设置编辑器在 system.webServer\httpCompression、dynamicTypes 集合中获取它们)。如果该类型不在列表中,则在执行 FREB。不要忘记重新启动应用程序池。
Sure. Make sure that the right content type is in the list of the dynamic content types (they are set on a server level, you can get to them through IIS settings editor, in system.webServer\httpCompression, dynamicTypes collection). If the type is not in the list, you'll be able to see DYNAMIC_COMPRESSION_NOT_SUCCESS Reason="NO_MATCHING_CONTENT_TYPE" when you do FREB. Don't forget to restart the application pool.