Bundled css link gets a 404 error

前端 未结 6 1026
不知归路
不知归路 2020-12-09 16:24

I am trying to get bundling to work in ASP.NET MVC 4. I am getting a 404 error from the link generated for the bundled CSS. I have done the following:

  1. Ins

6条回答
  •  一个人的身影
    2020-12-09 17:17

    I hade same problem (in ASP.Net webform), i resolved my issue with Ignore "bundles/" route in Global.asax :

    routeCollection.Ignore("bundles/{*catch}");
    

提交回复
热议问题