在PHP中,可以使用header()函数来实现重定向。以下是几种常见的重定向方式:
header("Location: http://www.example.com");
exit();
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com");
exit();
header("HTTP/1.1 302 Found");
header("Location: http://www.example.com");
exit();
echo "<script>window.location='http://www.example.com';</script>";
需要注意的是,重定向操作需要在发送任何输出内容之前执行,并且最好在执行重定向后立即使用exit()函数终止脚本的执行。