设置asp.net mvc 站点的默认页

在asp.net mvc 启动时,哪个网页定为首页,这个问题网上有很多种解决方案,在此处整理一下。

方案一:

转载 https://blog.csdn.net/liangmengbk/article/details/89430267
转载 (1条消息) asp.net mvc如何设置起始页_每天学习一点点-CSDN博客_asp.net mvc 启动页面

具体详情看图。

方案二:

不用上述方案,在代码中完成:

在mvc 下的Global.asax.cs下编写:

 public class MvcApplication : System.Web.HttpApplication
    {
    protected void Application_Start()
        {
           
            RegisterRoutes(RouteTable.Routes);
   
        }   
public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                "Default", // 路由名称
                "{controller}/{action}/{id}", // 带有参数的 URL
                new { controller = "User", action = "Index", id = UrlParameter.Optional } // 参数默认值
            );

        }
}

我这里网站首页是一个登录页面,也就是login.cshtml,默认跳转到index页面,不过index页面要登录权限所以先跳转到登录页面。

方案三:

在Global.asax文件中增加:

protected void Application_BeginRequest(object sender, EventArgs e)
{
    if (Context.Request.FilePath == "/") Context.RewritePath("index.html");
}

方案四:

新建一个路由DefaultController,并把它设置为默认路由,在Action中增加Redirect(Url.Content("~/index.html"));此方法需要修改web.config配置在Web.config文件中的<compilation>节点中增加:

 <buildProviders>
        <add extension=".htm" type="System.Web.Compilation.PageBuildProvider" />
 </buildProviders>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

瓜皮弟子头很铁

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值