302将所有页面重定向到主页 - ASP.NET

时间:2013-08-15 11:39:54

标签: asp.net redirect response.redirect http-status-code-302

有没有办法使用ASP.NET我可以302(临时)将网站上的所有页面重定向到主页(显然不会重定向主页)?

1 个答案:

答案 0 :(得分:4)

Global.asax 文件中添加:

protected void Application_BeginRequest(object sender, EventArgs e)
{
    if (Request.Url.LocalPath != "/Home.aspx")
        HttpContext.Current.Response.Redirect("Home.aspx");
}

来自HttpResponse.Redirect Method (String)文章:

  

ASP.NET通过返回302 HTTP状态代码来执行重定向。