当前位置:首页 > 服务器技术 > IIS

php301永久重定向之Apache与IIS

  1. header("HTTP/1.1 301 Moved Permanently");
  2. header("Location: http://www.example.com/newpage/");
  3. exit;
  4. ?>

PHP 301 for IIS:

  1. header("Status: 301 Moved Permanently");
  2. header("Location: http://www.example.com/newpage/");
  3. exit;
  4. ?>

更多php 301 重定向的文章,请参考: 二级目录下htaccess 301 重定向的配置代码 apache php 301重定向的实例分析 php 301重定向的实现方法 php实现301重定向的方法


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!