7
避免使用InheritInChildApplications在子Web应用程序中继承web.config
我正在尝试添加 <location inheritInChildApplications="false"> 到我的父Web应用程序的web.config,但似乎无法正常工作。 我父母web.config有: <configuration> <configSections> </configSections> // 10 or so custom config sections like log4net, hibernate, <connectionStrings> </connectionStrings> <appSettings> </appSettings> <system.diagnostics> </system.diagnostics> <system.web> <webParts> </webParts> <membership> </membership> <compilation> </compilation> </system.web> <location ..> <system.web> </system.web> </location> <system.webServer> </system.webServer> 我的子级Web应用程序被设置为IIS中的应用程序,并且是从父级Web应用程序继承而来的web.config,这会引起问题。 我到底应该放在哪里 <location inheritInChildApplications="false"> 因此它会忽略所有各种web.config设置?