What are some alternative ways to implement URL redirection in PHP without using header(Location: URL)?

Using JavaScript to perform URL redirection is an alternative way to implement redirection in PHP without using header(Location: URL). This method involves using JavaScript's window.location.replace() function to redirect the user to a new URL.

echo '<script>window.location.replace("new_url.php");</script>';