ServiceStack Basic Authentication HtmlRedirect is not respected by MVC ServiceStackController
问题 I'm probably not understanding something but I have the issue below: AppHost.cs Plugins.Add(new AuthFeature( () => new AuthUserSession(), new IAuthProvider[] { new BasicAuthProvider() }) { HtmlRedirect = null }); HomeController.cs [Authenticate] public class HomeController : ServiceStackController The issue The issue is that when I try to access the HomeController, I am redirected to ~/login?redirect=.... . I would assume that by setting HtmlRedirect to null, would also affect the MVC