asp.net-mvc – FormsAuthentication LoginUrl

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – FormsAuthentication LoginUrl前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > MVC Forms LoginUrl is incorrect6
我在这里完全失去了意义.这工作较早.我有一个使用表单认证的MVC3应用程序.在web配置中,我有以下几点:
<authentication mode="Forms">
  <forms loginUrl="~/Login/Index" timeout="2880"/>
</authentication>

然而,由于某些原因,当重定向或检查FormsAuthentication.LoginUrl时,它仍然使用默认的/ Account / Login.哪个不存在为什么没有web.config覆盖这个?

解决方法

尝试将其添加到您的web.config中的appSettings中:
<add key="loginUrl" value="~/Account/logon" />
原文链接:https://www.f2er.com/aspnet/250931.html

猜你在找的asp.Net相关文章