so for example, lets say i want all my visitors that go to example1.php to go to example2.php automatically, this is how my example1.php file would like:
<?php
header("Location: http://www.wallpaperama.com/example2.php");
exit;
?>
header("Location: http://www.wallpaperama.com/example2.php");
exit;
?>
so when anyone goes to http://www.wallpaperama.com/example1.php it will automatically relocate them to http://www.wallpaperama.com/example2.php
