中山php|最优网络 :中山做网站 中山php建站
最优良人
Posts Tagged With: header
PHP利用header函数实现各种状态的跳转
2011/08/15 at 16:08 » Comments (250)
header实现301永久重定向 Header("HTTP/1.1 301 Moved Permanently"); Header("Location: http://www.zui88.com"); header实现302临时重定向 Header("HTTP/1.1 302 Found"); Header("Location: http://www.zui88.com"); header实现404无法找到页面 Header("HTTP/1.1 404 Not Found"); 一下函数可实现各种状态的跳转: /** * 跳转页面 * * 使用header()进行页面跳转,不显示任何内容.如果不能使用header跳转 * @param string $url * @param int $status */ function goto($url,$status=null) { if(!empty($status)) { $status=intval($status); $codes = array( 100 => "Continue", 101 => "Switching Protocols", 200 ...more »