C# MVC 网站将http强制跳转到https

网站将http强制跳转到https
使用c# mvc自带的RequireHttpsAttribute
在项目Global.asax文件 Application_Start中添加过滤

protected void Application_Start()
 {
     AreaRegistration.RegisterAllAreas();
     RouteConfig.RegisterRoutes(RouteTable.Routes);
     GlobalFilters.Filters.Add(new RequireHttpsAttribute());
 }

在项目webconfig文件中添加配置节点

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
system.webServer>

本文希望能够有所帮助

你可能感兴趣的:(C#)