How to overwrite post logout redirect url
问题 I am using IdentityServer3 and i have ASP.NET Core as Client application. Here is my LoggOff action method [HttpPost] public async Task LogOff() { await Microsoft.AspNetCore.Authentication.AuthenticationHttpContextExtensions.SignOutAsync(HttpContext, CookieAuthenticationDefaults.AuthenticationScheme); await Microsoft.AspNetCore.Authentication.AuthenticationHttpContextExtensions.SignOutAsync(HttpContext, OpenIdConnectDefaults.AuthenticationScheme); } When user logs out i see the following