I created a Area in my MVC 3 application called \'Blog\'.
In global.asax I have the following code.
public static void RegisterRoutes(RouteCollection
I'm using Phil Haack's routedebugger to troubleshoot problems such as this one. It conveniently shows all registered routes and how the entered URL matches your configuration.
It works by overriding the regular application flow, which you enable by adding this line at the end of Application_Start:
RouteDebug.RouteDebugger.RewriteRoutesForTesting( RouteTable.Routes );