IIS网站,添加子站(虚拟应用程序)时,避免子站web.config继承主键的web.config的配置,导致子站无法运行,需要配置主键的web.config,解决方法如下:
在主站点的<system.web>上一级添加父节点(红色的location):
<location path="." allowOverride="false" inheritInChildApplications="false">
<system.web>
<!-- *** -->
</system.web>
<system.webServer>
<!-- *** -->
</system.webServer>
</location>
标签:web,隔绝,iis,子站,站点,config,主键 From: https://www.cnblogs.com/nanfei/p/16841089.html