summaryrefslogtreecommitdiff
path: root/404.php
blob: aef4032229163fbe964e4eed14ec78e42e1ae56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
// This is the template used by Nginx internally;
// if you want something else, have Nginx intercept it.
// Separation of concerns.
header("HTTP/1.0 404 Not Found");
?><html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center><?php echo $_SERVER["SERVER_SOFTWARE"]; ?></center>
</body>
</html>