<?php 

/* Before using the 301 status code, you may wish to review the protocol
   specification at

   http://www.w3.org/Protocols/HTTP/1.0/spec#Code301
   http://www.w3.org/Protocols/HTTP/1.1/spec#Code301

   For the PHP function used here, see
   http://www.php.net/manual/en/function.header.php
*/

$location "http://example.sbc.com/";
$status "HTTP/1.x 301 Moved Permanently";

/*    $status = "HTTP/1.x 301 Permanently Moved"; */
    
header($status);
    
header("Location: $location");
?>

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title><?php print $status ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<body>
<h1><?php print $status ?></h1>
<p>Our most abject apologies, Kind Reader, but we appear to have moved.</p>

<p>You may find us at <a href="<?php print $location ?>"><?php print $location ?></a>.</p>

<p>Good luck!</p>

</body>
</html>