So, we've got an MVC project that has been upgraded through the different versions of MVC from 1 through to 4.
Now we have a controller method:
public async Task<ActionResult> IndexAsync()
so if we go to http://somedomain.xyz/WhicheverController or http://somedomain.xyz/WhicheverController/Index, we are greeted with a 404.
http://somedomain.xyz/WhicheverController/IndexAsync routes to the method just fine.
What's gone wrong with our routing?