MVC首页实现静态化后,无静态页面时默认原路由规则实现方案

mvc3中,将首页实现了静态化,生成静态文件如index.html,在无静态文件时系统自动运行路由规则的页面。具体,如tech.bubufx.com,当存在index.html时运行index.html,当删除了该静态文件后,运行未实现静态化的程序如tech.bubufx.com/home/index,自动。


protected void Application_BeginRequest(Object sender, EventArgs e)
{
    if (Context.Request.FilePath == "/") Context.RewritePath("index.html");
}

增加路由规则:

      routes.MapRoute(
                "html", // Route name
                "{action}.html", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
                , new[] { "bubufx.Controllers" }//默认命名空间
            );


MVC首页实现静态化后,无静态页面时默认原路由规则实现方案

上一篇:聚集索引和非聚集索引【摘】


下一篇:PS自学教程来助你越过设计行业高门槛