我有一个网站,并在它下面有一个应用程序。
按照这里的 tut http://msdn.microsoft.com/en-us/library/ff648341.aspx我在应用程序中创建了一个安全文件夹。
然后 web.config 被添加到应用程序的文件夹中,但我仍然可以访问安全文件夹我做错了什么?
<?xml version="1.0"?>
<configuration>
<system.web>
</system.web>
<!-- The secure folder is for authenticated and SSL access only. -->
<location path="Secure" >
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
</configuration>
更新:最后我有一个 index.html,当我用 Default.aspx 替换它时它确实有效。
那么如何在不添加扩展名的情况下保护任何文件:(