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