When creating a new project in VS 2015 WebApplication, how would you go about changing the Redirect LoginUrl Path when not Authorize\'d?
I have created a new Area, w
Try doing the following:
services.Configure(options => { options.LoginPath = new PathString("//Account/Login"); });
Question: Did you decorate your controller with an [Area] attribute?
[Area]