zoukankan      html  css  js  c++  java
  • 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>

     PS:iis设置的默认文档优先级要比web.config配置的默认文档高。

  • 相关阅读:
    实习日记7.28
    实习日记7.27
    实习总结(第三周)
    实习日记7.26
    实习日记7.25
    实习总结(第二周)
    实习总结(第一周)
    实习日记7.22
    实习日记7.21
    5月4下
  • 原文地址:https://www.cnblogs.com/paulhe/p/4421822.html
Copyright © 2011-2022 走看看