MVC Route not working

When you run your MVC application, you always receive following message:

HTTP Error 404.0 - Not Found

The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.

But actually, in your code ,the routes are all right .

In this scenario, make sure following config exists in you web.config file's system.webserver node:

<modules runAllManagedModulesForAllRequests="true" />

It woks good for me ,hope this help someone else .

原文地址:https://www.cnblogs.com/yanyuge/p/3961016.html