如何强制 HttpModule 仅在特定目录上使用?

发布于 2024-12-14 04:44:08 字数 520 浏览 0 评论 0原文

我试图使用 HttpModule 拦截对不包含代码文件(图像、音乐等)的特定目录的请求。我的模块可以工作,但它适用于所有文件夹,而不仅仅是我希望它适用的文件夹。我尝试在 web.config 中使用以下代码将其强制到一个位置,但它似乎不起作用:

<location path="extraData/files">
  <system.webServer>
    <modules>
      <remove name="staticFileSecurityModule"/>
      <add name="staticFileSecurityModule" type="content.httpModules.StaticFileSecurityModule" preCondition=""/>
    </modules>
  </system.webServer>
</location>

我希望使用此模块的目录是 /extraData/files

I am attempting to use an HttpModule to intercept requests to a specific directory which contains none code files (Images, Music, etc). The Module I have works except it applies to all folders not just the one I want it to apply to. I attempted to use the following code in my web.config to force it to the one location only, but it doesn't seem to work:

<location path="extraData/files">
  <system.webServer>
    <modules>
      <remove name="staticFileSecurityModule"/>
      <add name="staticFileSecurityModule" type="content.httpModules.StaticFileSecurityModule" preCondition=""/>
    </modules>
  </system.webServer>
</location>

The directory I want this module to be used for is /extraData/files

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

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

发布评论

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

评论(2

那伤。 2024-12-21 04:44:09

您不能将其构建到模块中以检查 HttpRequest 对象中的当前 Url,然后如果它位于同一 URL 中,则对其执行某些操作吗?也可以使用自定义配置部分进行配置。

Can't you build it in to the module to check the current Url from the HttpRequest object, and then if it's in the same URL, do something with it? That could also be made configurable using a custom configuration section.

迷路的信 2024-12-21 04:44:09

还没有尝试过,但是在您的特定目录中创建一个新的 Web.config,并将此代码仅放置在这个 Web.config 中怎么样?

Haven't tried it, but how about creating a new Web.config in your specific directory, and placing this code only in this Web.config?

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