#1 • 6 年, 3 月 前 •
这个主要是通过 CookieAuthenticationOptions
类来配置的,类的介绍路径为 https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions?view=aspnetcore-2.1
如果你要改变这个地址,可以参考 https://github.com/aspnet/Identity/issues/539 这里的解决方案
services.ConfigureApplicationCookie(options => { options.AccessDeniedPath = "/Identity/Account/AccessDenied"; options.Cookie.Name = "YourAppCookieName"; options.Cookie.HttpOnly = true; options.ExpireTimeSpan = TimeSpan.FromMinutes(60); options.LoginPath = "/Identity/Account/Login"; // ReturnUrlParameter requires //using Microsoft.AspNetCore.Authentication.Cookies; options.ReturnUrlParameter = CookieAuthenticationDefaults.ReturnUrlParameter; options.SlidingExpiration = true; });
#2 • 6 年, 3 月 前 •
我去,评论的 markdown 支持怎么没有了....
#3 • 6 年, 3 月 前 •
回复终于支持 markdown 了。http://www.twle.cn/
#4 • 6 年, 3 月 前 •
感谢!!