- header("HTTP/1.1 301 Moved Permanently");
- header("Location: http://www.example.com/newpage/");
- exit;
- ?>
PHP 301 for IIS:
- header("Status: 301 Moved Permanently");
- header("Location: http://www.example.com/newpage/");
- exit;
- ?>
更多php 301 重定向的文章,请参考:
二级目录下htaccess 301 重定向的配置代码
apache php 301重定向的实例分析
php 301重定向的实现方法
php实现301重定向的方法 |