ASP.NET MVC中的身份验证模式和windowsAuthentication标记不同

本文关键字:windowsAuthentication 模式 MVC NET 身份验证 ASP | 更新日期: 2023-09-27 18:24:41

在IIS 7中,若使用以下部分配置应用程序,则会出现401错误。

<authentication mode="Windows" />
<authorization>
   <deny users="?" />
</authorization>

当添加以下部分时,它运行良好。那么,我们需要在web.config中同时包含这两个部分吗?

<system.webServer>
 <security>
            <authentication>
                <anonymousAuthentication enabled="false" />
                <windowsAuthentication enabled="true" />
            </authentication>
  </security>       
</system.webServer>

ASP.NET MVC中的身份验证模式和windowsAuthentication标记不同

是。您需要关闭匿名身份验证。

相关文章:
  • 没有找到相关文章