部署了一个网站,需要设置网站的首页为后台登录页面 在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");
}