Asp.net HTTP 压缩是否会影响特定子目录中的页面

发布于 2024-11-28 18:45:27 字数 131 浏览 0 评论 0 原文

我有一个 Web 应用程序想要在特定子目录中的特定页面上启用 HTTP 压缩。这怎么可能?

Asp.net 4 中的压缩与像 asp.net 2 一样与 Asp.net Ajax(*.axd 文件) 冲突吗?

谢谢

I have a web application that want to enable HTTP compression on specific pages in a specific sub directory.How is it possible?

Compression in Asp.net 4 has conflict with Asp.net Ajax(*.axd files) like asp.net 2?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

命硬 2024-12-05 18:45:27

根据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.

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