13 lines
386 B
PHP
13 lines
386 B
PHP
<?php
|
|
// $Id$
|
|
|
|
include_once "includes/common.inc";
|
|
|
|
$errors = array(500 => "500 error: internal server error", 404 => "404 error: '".`$_SERVER["REDIRECT_URL"] ."' not found", 403 => "403 error: access denied - forbidden", 401 => "401 error: authorization required", 400 => "400 error: bad request");
|
|
|
|
watchdog("httpd", $errors[$_SERVER["REDIRECT_STATUS"]);
|
|
|
|
drupal_goto($base_url);
|
|
|
|
?>
|