MVC设置默认页面的几个方法
方法1:在RouteConfig.cs文件中配置默认路由
public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); } }
方法2:在Global文件中添加方法
protected void Application_BeginRequest(object sender, EventArgs e) { if (Context.Request.FilePath == "/") HttpContext.Current.Response.Redirect("/home/about"); }
方法3:在web.config中配置节点;这个方法不支持路由,默认文档需放在网站根目录下,类型可以是.php, .asp, .htm, .aspx, .cfm等等
<system.webServer> <defaultDocument> <files> <clear/><!--防止在iis配置默认文档中冲突--> <add value="index.html" /> </files> </defaultDocument> </system.webServer>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。