1 <?php
2 // Permanent redirection
3 header("HTTP/1.1 302 Moved temporarily");
4 header("Location: client.php");
5 exit();
6 ?>