中山php|最優(yōu)網(wǎng)絡(luò) :中山做網(wǎng)站 中山php建站
最優(yōu)良人
Posts Tagged With: header
PHP利用header函數(shù)實(shí)現(xiàn)各種狀態(tài)的跳轉(zhuǎn)
2011/08/15 at 16:08 » Comments (250)
header實(shí)現(xiàn)301永久重定向 Header("HTTP/1.1 301 Moved Permanently"); Header("Location: http://"); header實(shí)現(xiàn)302臨時(shí)重定向 Header("HTTP/1.1 302 Found"); Header("Location: http://"); header實(shí)現(xiàn)404無法找到頁面 Header("HTTP/1.1 404 Not Found"); 一下函數(shù)可實(shí)現(xiàn)各種狀態(tài)的跳轉(zhuǎn): /** * 跳轉(zhuǎn)頁面 * * 使用header()進(jìn)行頁面跳轉(zhuǎn),不顯示任何內(nèi)容.如果不能使用header跳轉(zhuǎn) * @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 »