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" }//默认命名空间 );