如何使用ASP.NET MVC 6重定向未经授权的用户

我想知道如何重定向用户.我有一个控制器索引(),我希望只有具有“学生”角色的用户才能进入那里!所以我用

[Authorize(Roles="Student")]

我想知道如何将没有此角色的用户重定向到主页

最佳答案 MVC5(和更老):

您可以通过更改web.config上的loginUrl属性来完成此操作.将其更改为所需的路线:

<authentication mode="Forms">
  <forms loginUrl="~/Home/Index" timeout="2880" />
</authentication>

MVC6:

在MVC6中你可以尝试这个(在Startup.cs中):

public void ConfigureServices(IServiceCollection services)
{       
    services.Configure<CookieAuthenticationOptions>(options =>
    {
        options.LoginPath = new PathString("/Home/Index");
    });
}
点赞