PHP 301 for IIS: header("Status: 301 Moved Permanently");header("Location: http://www.example.com/newpage/");exit;?>更多php 301 重定向的文章,请参考: 二">
输入banner图图片脚本导航/分类

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重定向的方法