gpt4 book ai didi

asp.net - 如何使用 ASP.NET 发送 301 永久重定向?

转载 作者:可可西里 更新时间:2023-11-01 16:26:11 26 4
gpt4 key购买 nike

我需要永久重定向一些页面,并将用户重定向到新的 URL。

此代码仅设置正确的 header 。用户不会被重定向。

public static void PermanentRedirect(this HttpResponse response, string newUrl)
{
response.Status = "301 Moved Permanently";
response.StatusCode = 301;
response.AddHeader("Location", newUrl);
}

如果我输入:

Response.Redirect(newUrl);

最后,执行 302 临时重定向。

如何 301 重定向用户?

Related Questions:

How do I programatically 301 redirect in an asp page

最佳答案

尝试 Response.Flush 和 Response.End。重定向表示通过发送 302 结束请求。

关于asp.net - 如何使用 ASP.NET 发送 301 永久重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1083337/

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