Asp.net HTTP 压缩是否会影响特定子目录中的页面
我有一个 Web 应用程序想要在特定子目录中的特定页面上启用 HTTP 压缩。这怎么可能?
Asp.net 4 中的压缩与像 asp.net 2 一样与 Asp.net Ajax(*.axd 文件) 冲突吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据http压缩元素你可以找到包含此元素的配置文件:
Machine.config
应用程序主机.config
根应用程序Web.config
应用程序Web.config
目录 Web.config
因此,您应该创建正确的 web.config 并将其移动到所需的目录。
更新
如果您想自己查看ASP.NET GZip 编码注意事项 - 这是一篇好文章。我想你必须编写 HttpModule 来决定是否需要压缩。
According to httpCompression Element you can locate config file with this element in:
Machine.config
ApplicationHost.config
Root application Web.config
Application Web.config
Directory Web.config
So you should create right web.config and move one to desired directory.
UPDATE
If you wanna do it yourself to see ASP.NET GZip Encoding Caveats - it's good article. I suppose you have to write HttpModule that will decide - need compression or not.