我正在使用 IISExpress 部署 MVC4应用程序。这个网站在同一台电脑上运行得很好。但在兰,它给了我错误401。
<authentication mode="Forms">
<forms loginUrl="~/" slidingExpiration="true" timeout="20">
</forms>
</authentication>
在家庭控制器里
[HttpPost]
[AllowAnonymous]
public ActionResult Index(LoginModel model, string returnUrl)
{
}
我正在以管理员模式从命令提示符启动 IIS 服务器。 IIS 以错误 401
响应请求。
有线索吗?