几秒钟后如何在没有元 http-equiv=REFRESH CONTENT=time 的情况下在 PHP 中重定向页面

2022-01-11 00:00:00 header refresh redirect php meta-tags

似乎不建议使用

<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.

相关文章