存档

2017 年 04 月 - 1 文章

PHP 函数 header() 的用法归纳

 

301 永久重定向 <?php header('HTTP/1.1 301 Moved Permanently'); header('Location: http://www.example.com'); exit(); ?> 302 临时重定向 <?php header('Location: http://www.example.com'); exit(); ?> 404 页面未找到 <?php header('HTTP/1.1 404 Not Found'); ?> 503 服务不可用 <?php header('HTTP/1.1 503 Service Temporarily Unavailable'); header('Status: 503 Service Temporarily Unavailable'); exit(); ?> 设置内容类型 <?php // html header('Content-Type: text/html; charset=iso-8859-1'); head....

More...