我目前正在开发一个 ASP.NET 网站,该网站用于Forms Authentication
限制对~/resources/restricted/*
用户需要注册才能查看的某些文件 ( ) 的访问。~/common/images/backgrounds/bg_community.jpg
不幸的是,这具有在网站的不相关部分中不允许背景 () 的额外效果。
我的配置有什么问题/我该如何解决?
~/Web.config
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<!-- ... --->
<system.web>
<!-- ... --->
<authentication mode="Forms">
<forms loginUrl="~/users/login.aspx" />
</authentication>
<!-- ... --->
</system.web>
<!-- ... --->
<location path="~/resources/restricted">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
<!-- ... --->
</configuration>