我的配置服务如下:
services.AddAuthentication(options =>
{
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;
})
.AddCookie(o =>
{
o.LoginPath = "/User/Login";
});
当需要授权的页面被调用时,它会被重定向到带有类似 localhost:58731/User/Login?ReturnUrl=%2F 的 URL 的登录页面
我怎样才能像这样设置这个网址:localhost:58731/Login/%2F
谢谢。