自定义 Azure AD 注销页面
Customize Azure AD signout page
我在 ASP.NET 核心应用程序中使用 Azure AD 进行登录。注销 link 是 <a class="nav-link text-dark" asp-area="MicrosoftIdentity" asp-controller="Account" asp-action="SignOut">
,注销成功后将我重定向到 MicrosoftIdentity/Account/SignedOut
。我怎样才能让它重定向到另一个页面?
在这种情况下,您可以构建自己的 AccountController
而不是官方示例中的默认值,或者使用 URL Rewriting Middleware
重定向您想要的 URL。
参考 -
我在 ASP.NET 核心应用程序中使用 Azure AD 进行登录。注销 link 是 <a class="nav-link text-dark" asp-area="MicrosoftIdentity" asp-controller="Account" asp-action="SignOut">
,注销成功后将我重定向到 MicrosoftIdentity/Account/SignedOut
。我怎样才能让它重定向到另一个页面?
在这种情况下,您可以构建自己的 AccountController
而不是官方示例中的默认值,或者使用 URL Rewriting Middleware
重定向您想要的 URL。
参考 -