私の Web サイトのほとんどで、通常のルーティングを MVC 方式で行いたいと考えています。ただし、アプリを最初に起動したときに、ルートが /Home/Index.cshtml に移動するのは望ましくありません。単純に /Index.html に移動したい
私の現在のRegisterRoutesは次のようになります(そして私の目標を達成しません)
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("index.html");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}