IIS 6 应用程序 - 覆盖顶级 web.config
所以,我有一个主要应用程序位于 www.mydomain.com
我刚刚创建了一个子应用程序,该子应用程序将驻留在 www.mydomain.com/subapp ,但我希望它完全独立于其父应用程序。
我怎样才能强迫它忽略它的父级的 web.config?
谢谢
so, i have a main application that lies at www.mydomain.com
I've just created a sub-app that is going to reside at www.mydomain.com/subapp , but i want it to be completely independent from it's parent.
how can i force it to ignore it's parent's web.config?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能干净利落。 IIS 中没有实际的标志:它包含在 web.config 文件本身中。
http://www.aspdotnetfaq.com/Faq/how-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx
http://www.kowitz.net/archive /2007/05/16/stopping-asp.net-web.config-inheritance
看起来并不简单,尽管我一直认为它根本无法在 IIS 6 上完成。
You can't cleanly. There is no actual flag in IIS: it's contained in the web.config files themselves.
http://www.aspdotnetfaq.com/Faq/how-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx
http://www.kowitz.net/archive/2007/05/16/stopping-asp.net-web.config-inheritance
Doesn't look straightforward, although I always thought it couldn't be done at all on IIS 6.