我想允许Anonymous.aspx
所有用户访问页面,我已将Basic Authentication 设置为 Enabled,并Connect as to specific user。
我的问题是在尝试访问时http://MyIPAddress/MyAlias/Anonymous.aspx
出现身份验证弹出窗口——理想情况下不应该出现,当我关闭弹出窗口时401.2 Unauthorized error
——很明显
错误摘要
HTTP 错误 401.2 - 未经授权 由于身份验证标头无效,您无权查看此页面。错误代码 0x80070005
下面是我的 web.config 文件的快照。
<configuration>
<system.web>
<authentication mode=“Windows“/>
</system.web>
<location path=“Anonymous.aspx“>
<system.web>
<authorization>
<allow users=“*“/>
</authorization>
</system.web>
</location>
</configuration>
我该如何解决这个错误。