中山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.86956464.com"); header實現302臨時重定向 Header("HTTP/1.1 302 Found"); Header("Location: http://www.86956464.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 »