【发布时间】:2013-08-17 14:20:51
【问题描述】:
有没有一种使用 ASP.NET 的方法可以 302(临时)将网站上的所有页面重定向到主页(显然不重定向主页)?
【问题讨论】:
标签: asp.net redirect response.redirect http-status-code-302
有没有一种使用 ASP.NET 的方法可以 302(临时)将网站上的所有页面重定向到主页(显然不重定向主页)?
【问题讨论】:
标签: asp.net redirect response.redirect http-status-code-302
将此添加到您的 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 状态码来执行重定向。
【讨论】: