久艹网,亚洲一日韩欧美中文字幕2019,国产欧美日韩精品专区黑人,一区二区三区久久99

中山php|最優(yōu)網絡中山做網站 中山php建站

最優(yōu)良人

Posts Tagged With: header

PHP利用header函數(shù)實現(xiàn)各種狀態(tài)的跳轉

2011/08/15 at 16:08 » Comments (250)

header實現(xiàn)301永久重定向 Header("HTTP/1.1 301 Moved Permanently"); Header("Location: http://www.dgkai.cn"); header實現(xiàn)302臨時重定向 Header("HTTP/1.1 302 Found"); Header("Location: http://www.dgkai.cn"); header實現(xiàn)404無法找到頁面 Header("HTTP/1.1 404 Not Found"); 一下函數(shù)可實現(xiàn)各種狀態(tài)的跳轉: /** * 跳轉頁面 * * 使用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 »