-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
34 lines (31 loc) · 980 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?
// forwards for slashed zeros in calls
$url = $_SERVER['REQUEST_URI'];
if (preg_match('/%C3%98/', $url)) {
$newurl = preg_replace('/%C3%98/', '0', $url);
header("Location: https://rbn.telegraphy.de$newurl");
return;
}
?>
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="/bandmap.css">
<title>Error 404</title>
<link rel="icon" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
<h1>Error 404</h1>
<p>The site you are requesting cannot be found.</p>
<p>Here are some options:</p>
<ul>
<li><a href="/">Main site: CW Clubs RBN</a></li>
<li><a href="/activity">RBN Activity Charts</a></li>
<li><a href="/activity/rank">RBN Activity Ranking</a></li>
</ul>
<hr>
<a href="https://fkurz.net/">Fabian Kurz, DJ5CW</a> <<a href="mailto:[email protected]">[email protected]</a>>
</body>
</html>