asp.net如何做301重定向

SEO要求重定向必须是301永久重定向,实现如下:
 
protected override void OnLoad(EventArgs e)
{
    Response.Clear();
    Response.Status = "301 Moved Permanently";
    Response.AddHeader("Location","http://travel.hexun.com");
}

相关文章

随机推荐:

相关链接

helloajax.com
专注Ajax、Asp.Net、JavaScript技术