EngineGP/system/engine/404.php
2023-03-05 02:45:46 +03:00

7 lines
173 B
PHP

<?php
if(!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://'.$_SERVER['SERVER_NAME'].'/404'));
http_response_code(404);
exit(file_get_contents(ROOT.'404.html'));
?>