在IIS 7.0中,在web.config中使用location
标记可以正常工作。
示例:
<configuration>
....
<location path="export">
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="false"/>
<windowsAuthentication enabled="false"/>
</authentication>
</security>
</system.webServer>
</location>
我们最近在我们的计算机上安装了Windows 7,在IIS 7.5中,所有这些location
标记都不再起作用。