- header()函数;
header('location:http://www.baidu.com');
- meta标签;
echo '<meta http-equiv="refresh" content="1;url=http://www.baidu.com">';
- script标签;
echo '<script>window.location.href="http://www.baidu.com"</script>';
header('location:http://www.baidu.com');
echo '<meta http-equiv="refresh" content="1;url=http://www.baidu.com">';
echo '<script>window.location.href="http://www.baidu.com"</script>';