在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()函數終止腳本的執行。