0
我有以下的在我的啓動類的dotnetcore web應用程序:UseCookieAuthentication犯規重定向到登錄頁面asp.net核心
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationScheme = "Cookies",
AutomaticAuthenticate = true,
AutomaticChallenge = true,
LoginPath = "/account/login"
})
我得到一個401未經授權但不重定向到我/帳號/登錄頁面 - 任何想法?
是否已確認'ConfigureAuth()'是不斷叫什麼名字? –
在Configure方法中添加app.UseMvc(routes => { routes.MapRoute( name:「default」, template:「{controller = account}/{action = login}/{id?}」); }); –