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