如何强制 HttpModule 仅在特定目录上使用?
我试图使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能将其构建到模块中以检查 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.
还没有尝试过,但是在您的特定目录中创建一个新的 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?