summaryrefslogtreecommitdiff
path: root/error.php
blob: db6f157c47079d9be38162dc45defa802d8df0ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

include_once "includes/common.inc";

$errors = array(500 => "500 error: internal server error",
                404 => "404 error: `$REDIRECT_URL' not found",
                403 => "403 error: access denied - forbidden",
                401 => "401 error: authorization required",
                400 => "400 error: bad request");

watchdog("httpd", $errors[$REDIRECT_STATUS]);

if (strstr($REDIRECT_URL, "index.php")) {
  header("Location: ../index.php");
}
else {
  header("Location: index.php");
}

?>