I am looking for a way to route all traffic to my Home controller and to the Index action, regardless of the URL they use to arrive at my site.
As long as they are usi
When setting your routes, you may try defining a default route as the last route definition
routes.MapRoute( "Default", "{*any}", new { controller = "Home", action = "Index" } );
Hope this will help