with site structure as below

and route config as
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
Then I go to http://localhost:23233, it shows me with index.cshtml in root, if i rename the root index.cshtml, it shows me index in views/home folder. I do not quite understand this. Aren't all views returned by controller? can someone explain this to me?
"") requests have MVC ignore it and have it pick up the index through the regular asp.net system. Maybe you could elaborate, is theHomeControllerbeing hit at all? Or is the view called directly (as if it were an old fashioned asp.net aspx page)? – René Wolferink Nov 19 '12 at 15:13