ASP.NET MVC on IIS falls through to the static file handler

前端 未结 5 1475
抹茶落季
抹茶落季 2020-12-24 07:33

I have a problem with an ASP.NET MVC site.

These are the details:

  1. ASP.NET MVC 2
  2. ASP.NET 4 integrated pipeline
  3. IIS 7.5 on Windows Web
5条回答
  •  [愿得一人]
    2020-12-24 07:59

    In my case, a similar error was thrown because StaticFile Handler was disabled / not working properly. I eventually fixed it by removing the handler and re-adding it through the web.config. Also, in case of a 403.3 error, change the RequireAccess-property value from "Write" to "Read"

    
        
            
               
            
        
    
    

提交回复
热议问题