码迷,mamicode.com
首页 > Web开发 > 详细

MVC设置默认页面的几个方法

时间:2015-04-13 12:45:55      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

方法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>

 

MVC设置默认页面的几个方法

标签:

原文地址:http://www.cnblogs.com/paulhe/p/4421822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!