web.config - 拒绝访问特定文件夹和内容

时间:2014-07-01 10:11:11

标签: c# asp.net-mvc web-config

目标:

拒绝匿名用户访问特定文件夹及其在web.config文件中的内容。

问题

在该文件夹中我们有一些文件夹,每个文件夹里面都有html文件, 例如:

  • “演示/β1的/ index.html中”
  • “演示/β2 / index.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>

0 个答案:

没有答案