What are some considerations for ensuring the user's browsing history does not list the called page?

When a user visits a page on a website, their browsing history may list the called page, which can compromise their privacy. To prevent this, one solution is to redirect the user to a new page after processing the requested content. This way, the original page URL is not stored in the browsing history.

<?php
// Process the requested content here

// Redirect the user to a new page
header("Location: new_page.php");
exit;
?>