asp.net-mvc-4 – 使用asp.net MVC4,如何在默认情况下执行root index.html?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-4 – 使用asp.net MVC4,如何在默认情况下执行root index.html?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于我的大部分网站,我希望正常路由以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 }
        );
    }

解决方法

public ActionResult Index() {
        string FilePath = Server.MapPath("~/index.html");
        // You can add other conditions also here
        if (System.IO.File.Exists(FilePath)) {
            return File(FilePath,"text/html");
        }
        return View();
    }

希望这可以帮助!

原文链接:https://www.f2er.com/aspnet/245524.html

猜你在找的asp.Net相关文章