码迷,mamicode.com
首页 > 其他好文 > 详细

关于301错误跳转

时间:2014-12-19 11:56:28      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   使用   sp   

301错误主要是域名更换后,搜索引擎还在使用你原有的域名地址访问你的网站,如果搜索引擎爬取的时候得到的是一个301错误,那么搜索引擎就知道你已经更换了域名,下次就会使用新域名来索引你的网站,当然你要告诉搜索引擎你的新域名是什么

【引用百度拉】

bubuko.com,布布扣
//需要在webconfig配置
 <system.webServer>
    <handlers>
      <add name="301html" path="*.html" verb="*" type="System.Web.UI.PageHandlerFactory" resourceType="Unspecified" preCondition="integratedMode" />
   
    </handlers> </system.webServer>

//修改Global.asax文件

  void Application_BeginRequest(object sender, EventArgs e)
    {
        if (HttpContext.Current.Request.RawUrl.Contains("123.html"))//旧页面
        {
            Response.StatusCode = 301;
            Response.Redirect("http://www.baidu.com");//跳转地址
            Response.End();
        }
    }
    
View Code

 

关于301错误跳转

标签:style   blog   http   ar   io   color   os   使用   sp   

原文地址:http://www.cnblogs.com/LoveTX/p/4173419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!