Forum Discussion

0belix's avatar
0belix
Copper Contributor
Feb 14, 2022
Solved

Core 5 Razor Pages redirect to custom location login page

Hi, I have created a login page that stands on the root of the application instead of the standard /Account/Login.   When attempting to access a page that as the [Authorize] annotation, I keep get...
  • 0belix's avatar
    Feb 14, 2022

    Found the answer, in case someone stumbles with the same question:

    services.ConfigureApplicationCookie(options =>
    {
    options.LoginPath = "/Login";
    options.LogoutPath = "/Logout";
    });