在PHP中,有几种常见的页面跳转方法:
header("Location: http://www.example.com");
exit();
echo '<meta http-equiv="refresh" content="0;URL=http://www.example.com">';
echo '<script>window.location.href = "http://www.example.com";</script>';
echo '<script>window.location.replace("http://www.example.com");</script>';
需要注意的是,使用header()函数进行页面跳转时,必须在调用该函数之前没有输出任何内容,否则会导致错误。而其他方法则没有这个限制。