IIS上在主站点下搭建虚拟目录后,子站点中的<system.web>节点与主站点的<system.web>冲突解决方法:
在主站点的<system.web>上一级添加父节点:
<location path="." allowOverride="false" inheritInChildApplications="false">
<system.web>
<!-- *** -->
</system.web>
</location>
时间: 2024-10-02 00:29:37