在 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中文网其他相关文章!