I am having a problem with an Area route in MVC 5. When I browse to /Evernote/EvernoteAuth I get a 404 resource cannot be found error.
My area looks like this:
In my case the order of the configuration in Application_Start of global.asax.cs was
AreaRegistration.RegisterAllAreas(); GlobalConfiguration.Configure(WebApiConfig.Register);
Changing the order made it work.
GlobalConfiguration.Configure(WebApiConfig.Register); AreaRegistration.RegisterAllAreas();