在PHP中重定向网页的任何替代方法? [重复]

This question already has an answer here:

I want to redirect web page using PHP. Currently I'm using this code to redirect:

header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
exit();

Do you have any alternative to redirect web page using PHP?

</div>

you can redirect using the following script. But this is not a good way in my opinion. May be you can use any other framework for that.

    <?php 
        echo "<script> location.href='yourwebsite.com/user.php';; </script>"; 
        exit(); 
    ?>