I've been trying to figure out why my views are returning 404 in my staging environment, but not my development environment.
- Windows Server 2008 R2
- IIS 7.5
- MVC 2 Beta definitely installed.
The first Route entry in my Global.asax is as follows:
routes.MapRoute(
"FindStore",
"FindStore",
new { controller = "FindStore", action = "Index" });
All views are definitely present and in the proper directories.
Basically if I go to http://StagingServer/FindStore I get a 404 error. Every other answer I've seen has to do with IIS 6. which I'm not running.