I'm having trouble deploying an ASP.NET MVC application for IIS7.
I have an MVC project created using ASP.NET MVC Beta 1. It consists of nothing but the default template, not modified.
The application works fine in VS2008, but when I publish it on the local IIS7 website ( http: // localhost ), I get the following server error:
Incoming request does not match any route
I also tried unsuccessfully to access http: // localhost / Home / About (the route to a specific page in the template). This returns a 404 error.
I recreated the website several times in IIS and ensured that the pipeline mode was integrated. My IIS7 server runs on my Vista Home Premium machine.
I assume this is a problem with configuring IIS, any suggestions on configuration issues with ASP.NET MVC applications will be appreciated.
Any thoughts?
source
share