从一个页面重定向到另一个页面

这个问题在这里已经有了答案:

  • 如何在PHP中进行重定向? 27个答案

  • 你可以使用PHP的header()函数。 但请确保在header()调用之前没有输出,否则将失败。

    if(HERE YOUR CONDITION) {
        header("Location: confirm.php");
    }
    

    ob_clear(); //Make sure you've done ob_start() or not output anything to the browser    
    header('Location: confirm.php');
    exit;
    

    放头(“Location:confirm.php”); 在你的条件。

    链接地址: http://www.djcxy.com/p/34721.html

    上一篇: redirecting from a page to another one

    下一篇: Can't redirect from login page to home page