PHP返回200定时跳转
php定时跳转我们需要利用header函数输入html或js代码来实现定时跳转,JS和meta http-equiv=定时跳转HTTP的返回码是200.
PHP定时跳转代码:
<?php
header("refresh:3;url=//www.32xp.com");
echo '3秒后自动跳转到零分博客~~~';
?>
输出代码如同:
<meta http-equiv="refresh" content="3; url=//www.32xp.com">
HTTP的返回码都是200
标签:php定时跳转