欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 301 永久重定向之Apache与IIS

程序员文章站 2022-04-04 20:55:21
...
  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重定向的方法