目标:
拒绝匿名用户访问特定文件夹及其在web.config文件中的内容。
问题
在该文件夹中我们有一些文件夹,每个文件夹里面都有html文件, 例如:
如果我们在浏览器上引入以下URL(“Demos / beta1 / index.html”)授权不适用于匿名用户。为什么?
<?xml version="1.0"?>
<configuration>
<location path="Demos" allowOverride="true">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
</configuration>