似乎不建议使用
<meta http-equiv=REFRESH CONTENT=3;url=url>
用于重定向,而是使用
for redirects but instead use
header('Location: url')
但是,我想向用户显示一些消息,并在重定向之前让他们有时间阅读.有没有办法在没有元的情况下做到这一点?
However, I would like to show the user some message and allow them some time to read it before redirecting. Is there a way to do it without meta?
尝试使用刷新"标题:
header('Refresh: 3;url=page.php');
另外,你可以看看这个问题Refresh HTTP Header.
Also, you can look at this Question Refresh HTTP Header.
这篇关于几秒钟后如何在没有元 http-equiv=REFRESH CONTENT=time 的情况下在 PHP 中重定向页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!