//Location和":"之间无空格
1、立即跳转页面header('Location:url页面地址');
<?php header('Location:index.php'); ?>
2、定时跳转页面header('Refresh:time,Url=url页面地址');
<?php header('Refresh:3,Url=http://www.php.cn/'); //3s后跳转 ?>