有没有办法使用ASP.NET我可以302(临时)将网站上的所有页面重定向到主页(显然不会重定向主页)?
答案 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状态代码来执行重定向。