3

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

4

1 回答 1

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 状态代码来执行重定向。

于 2013-08-15T11:44:29.683 回答