dev.stuconnolly.com / svn / sites

  1. <?php
  2.  
  3. /*
  4.  *  $Id: 404.php 54 2010-08-28 10:43:31Z stuart $
  5.  *  
  6.  *  spbug.com
  7.  *  Sequel Pro URL Shortening Service
  8.  *
  9.  *  Copyright (c) 2010 Stuart Connolly. All rights reserved.
  10.  *
  11.  *  This program is free software: you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation, either version 3 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  23.  */
  24.  
  25. $title = 'Looking For Something...';
  26.  
  27. header('HTTP/1.1 404 Not Found');
  28.  
  29. require_once('header.php'); ?>
  30.  
  31.     <h1>Looking For Something...</h1>
  32.  
  33.     <p>Unfortunately the page you are looking for could not be found.</p>
  34.    
  35.     <p>Any of the following reasons could be the result of this:</p>
  36.    
  37.     <ul>
  38.         <li>The page was moved.</li>
  39.         <li>The page no longer exists.</li>
  40.         <li>The requested address (<acronym title="Uniform Resource Locator">URL</acronym>) is incorrect.</li>
  41.     </ul>
  42.    
  43. <?php require_once('footer.php'); ?>