blob: 66d654bd09f0d55c807bd88712e369923947aa54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
header("X-Request-Id: " . $_REQUEST["short"]);
$title= "404 Not Found";
require 'view/templ-head.php';
?>
<div class="container text-center pagination-centered">
<div class="row">
<h1>Failure - Not Found</h1>
<hr>
<h4>The requested URL ('<?php echo htmlentities($_SERVER["REQUEST_URI"]); ?>') wasn't found on this server.</h4>
</div>
</div>
<?php require("../tools/footer.php"); ?>
|