码迷,mamicode.com
首页 > Web开发 > 详细

MVC5 IIS7 403错误

时间:2018-09-27 01:48:27      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:hand   tin   app   cat   403错误   ack   har   sof   server   

问题背景

MVC5部署到IIS7中显示403错误。

 

解决方案

<system.webServer> → <modules> 节点下的 ApplicationInsightsWebTracking 修改为 UrlRoutingModule-4.0

<system.webServer>
    <modules>
        <remove name="ApplicationInsightsWebTracking" />
        <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
    </modules>
</system.webServer>

 修改为:

<system.webServer>
    <modules>
        <remove name="UrlRoutingModule-4.0" />
        <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />
    </modules>
</system.webServer>

 

MVC5 IIS7 403错误

标签:hand   tin   app   cat   403错误   ack   har   sof   server   

原文地址:https://www.cnblogs.com/polk6/p/8724185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!