如何在我的angular应用程序中将登录url从...../Account/Login更改为..../Identity/Account/Login?我的客户是一个angular 6应用程序,而我使用的是angular-auth-oidc-client。
谢谢
发布于 2018-11-09 14:49:52
当你调用AddIdentityServer时,你可以像这样调用它
services.AddIdentityServer(SetupIdentityServer)并使用这种静态方法。
private static void SetupIdentityServer(IdentityServerOptions identityServerOptions)
{
identityServerOptions.UserInteraction.LoginUrl = "/Identity/Account/Login";
}https://stackoverflow.com/questions/52225744
复制相似问题