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