ASP.NET aspx页面301永久跳转, 301转向

页面永久跳转,适合网站改版使用

原页面:http://www.abc.com/about.aspx

新页面:http://www.abc.com/about-new.aspx


about.aspx

<%@ Page Language="C#"%>

<script runat="server">
    /// <summary>
    /// 初始化页面
    /// </summary>
    protected void Page_Load(object sender, EventArgs e)
    {
        HttpContext.Current.Response.StatusCode = 301;
        HttpContext.Current.Response.Status = "301 Moved Permanently";
        HttpContext.Current.Response.AddHeader("Location", "about-new.aspx");
        //HttpContext.Current.Response.AddHeader("Location", "http://www.xxx.com/about-new.aspx");
        HttpContext.Current.Response.End();
    }
</script>


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角