Answer

专注于Mobile,WinCE
  首页  :: 新随笔  :: 联系 :: 管理

用ASP/PHP实现301重定向

Posted on 2011-01-04 22:29  answer  阅读(181)  评论(0编辑  收藏  举报
ASP:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://answer.cnblogs.com"
Response.End

PHP:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://answer.cnblogs.com");
exit();