如何在使用 PHP 5 分钟后重定向到另一个页面?
How do I redirect to another page after 5 minutes using PHP?
如果您真的想为此使用 PHP,那么您可以这样做:
If you really want to use PHP for this, here you go:
<?php header("Refresh: 300; URL=http://www.stackoverflow.com/"); ?>
这篇关于如何在 5 分钟后重定向到另一个页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!