您的位置:首页 > 编程语言 > ASP

[转]asp.net中虚拟目录不继承主目录的web.config设置

2010-11-04 17:30 323 查看
很多人有时都会为虚拟目录中的web.config继承了主目录中的web.config而苦恼,大部分主要是由于根目录中的web.config添加了httphandler、 httpmodule 引起的。

解决:只将 httphandler httpmodule的声明添加到location中即可。如下所示:
<configuration>
<location path="." inheritInChildApplications="false">
<system.web>
<httpModules>
<add name="UrlRewriteModule" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter" />
</httpModules>
</system.web>
</location>
</configuration>

path 不用说指定的是一个目录,inheritInChildApplications 指是否被子级应用程序继承

找到程序目录下的web.config,先备份,在<system.web></system.web>两加加上对应的配置,例如<location path="." inheritInChildApplications="false"><system.web>.......</system.web></location>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: