当前位置 : 主页 > 网络编程 > net编程 >

设置ASP.NET MVC站点默认页为指定页面

来源:互联网 收集:自由互联 发布时间:2023-09-06
部署了一个网站,需要设置网站的首页为后台登录页面 在Global.asax文件中增加 protected void Application_BeginRequest(object sender, EventArgs e) { if(Context.Request.FilePath == "/") Context.RewritePath("Admin/Logi

部署了一个网站,需要设置网站的首页为后台登录页面

在Global.asax文件中增加

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


上一篇:简易订单管理系统小练习
下一篇:没有了
网友评论