在PHP 中重新導向使用者
問題:
PHP 可以用來將使用者重定向到不使用元刷新的不同頁面?如果是這樣,如何實現?
答案:
使用Header() 進行基本重定向:
要重定向用戶,請使用header( ) 函數傳送包含新URL 的HTTP 標頭。這必須先於任何 HTML 或文字輸出。
header('Location: '.$newURL);
重要注意事項:
替代方案:
輔助函數:
function redirect($url, $statusCode = 303) { header('Location: ' . $url, true, $statusCode); die(); }
Header()解決方法的限制:
<meta http-equiv="refresh" content="0;url=finalpage.html">
window.location.replace("https://example.com/");
以上是如何在不使用元刷新的情況下在 PHP 中重定向用戶?的詳細內容。更多資訊請關注PHP中文網其他相關文章!