这是web.config;
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<customErrors mode="Off">
</customErrors>
<authentication mode="Forms">
<forms name=".ASPXAUTH" loginUrl="login.aspx" protection="All" timeout="999999">
<credentials passwordFormat="MD5">
<user name="admin" password="21232F297A57A5A743894A0E4A801FC3" />
</credentials>
</forms>
</authentication>
<authorization>
<allow users="?" />
<allow users="*" />
</authorization>
<trace enabled="true" localOnly="false" />
</system.web>
<location path="administration">
<system.web>
<authorization>
<allow users="admin" />
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>
当我在我的 Visual Studio 2008 开发服务器上运行它时,它运行良好并且运行良好。当我发布到 IIS 时,我总是在尝试访问网站上的任何页面时收到 Http 403 Forbidden Errors
我的站点中有 1 个文件夹应该受到登录保护,称为“管理”
请有人指出我哪里出错了!我变得非常沮丧:0)
谢谢!