Met*_*zed 4 asp.net redirect response.redirect http-status-code-302
有没有一种方法可以使用 ASP.NET 将网站上的所有页面 302(临时)重定向到主页(显然不是重定向主页)?
将其添加到您的Global.asax文件中:
protected void Application_BeginRequest(object sender, EventArgs e)
{
if (Request.Url.LocalPath != "/Home.aspx")
HttpContext.Current.Response.Redirect("Home.aspx");
}
Run Code Online (Sandbox Code Playgroud)
来自HttpResponse.Redirect 方法(字符串)文章:
ASP.NET 通过返回 302 HTTP 状态代码来执行重定向。
| 归档时间: |
|
| 查看次数: |
2158 次 |
| 最近记录: |