gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 02:48:43 25 4
gpt4 key购买 nike

有没有一种方法可以使用 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");
}

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

ASP.NET performs the redirection by returning a 302 HTTP status code.

关于asp.net - 302 将所有页面重定向到主页 - ASP.NET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18251930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com