使用 IdentityServer3 时如何避免呈现已注销页面

How to avoid rendering the Logged Out page when using IdentityServer3

从应用程序注销时,会显示 IdentityServer 的 "You are now logged out of the application" 视图。有什么办法可以防止这种情况发生吗?

TIA

您可以在 AuthenticationOptions 中将 EnablePostSignOutAutoRedirect 选项设置为 true(默认设置为 false)。然后,用户将被重定向回 post_logout_redirect_uri.

这里有更多详细信息: https://identityserver.github.io/Documentation/docsv2/configuration/authenticationOptions.html