User-1384221439 posted
If you are using default routing then www.blabla.com is the same as www.blabla.com/Home/Index. If you want to ommit Home from your URLs then you should change code in global.asax.cs in this way:
routes.MapRoute(
"Default", // Route name
"{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);