在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[] { "aWeb.Controllers" }//默认命名空间
);
在访问www.test.com时有index.html就是index.html,没有时就自动路由规则去了
时间: 2024-10-28 11:34:05