Path : /srv/www/vhosts/tsisystem/app/ |
Current File : /srv/www/vhosts/tsisystem/app/error.php |
<?php /* $Id$ */ class AppError extends ErrorHandler { /** * */ function AppError($method, $params) { if ($method == 'error404' || ! strncmp('missing', $method, 7)) { header("HTTP/1.0 404 Not Found"); echo "<meta http-equiv=\"Refresh\" content=\"3; url=/\" />"; echo "<strong>Requested address cannot be found on this server\n"; exit(); } parent::__construct($method, $params); } } ?>