PageAdmin网站内容管理系统(CMS)交流论坛

注册

 

QQ登录

只需一步,快速开始

发新话题 回复该主题

V4怎样把 www.123.com/index.aspx 跳转到到 www.123.com [复制链接]

1#

修改/index.aspx这个文件,里面加301跳转代码
  1.      HttpContext.Current.Response.StatusCode = 301;
  2.      HttpContext.Current.Response.Status = "301 Moved Permanently";
  3.      HttpContext.Current.Response.AddHeader("Location", “http://www.123.com”);        
  4.      HttpContext.Current.Response.End();
复制代码
分享 转发
TOP
发新话题 回复该主题