Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不是php程序员,所以请耐心等待...我正在尝试导航到特定的 URL,然后在 3 秒后重定向到另一个页面。但是,重定向的第二行不起作用!
php
请看下面我的php代码
<?php header("Location: http://someurl.com"); header("Refresh: 3;url=http://www.somenewurl.com/index.php"); ?>
我到达了第一个 URL - 这意味着第一行已执行。但是,第二行中的重定向不会发生......
echo '<meta http-equiv="refresh" content="3;url=http://www.somenewurl.com/index.php">';
但不知道你为什么需要它,没有多少网站这样做,不要使用刷新,只使用标题位置,然后执行 exit();