Logo Luan Morina
   Redirect users to another page
Redirect to another page
<?php
header("Location: /folder/page.php");
exit();
?>
Redirect if the page has been moved permanently
<?php
header("Location: http://www.domain.com/another-page.php", true, 301);
exit();
?>
   Redirect users to another page with PHP