-
Notifications
You must be signed in to change notification settings - Fork 0
/
moved.php
executable file
·31 lines (31 loc) · 1.36 KB
/
moved.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
<html>
<head>
<title>webOS Archive has Moved!</title>
<style>
body, h1 { font-family: Arial, Helvetica, sans-serif; font-weight: normal; }
a { color: darkorange; text-decoration: none; }
a:hover { text-decoration: underline;}
</style>
<?php
$q = "";
if (isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] != "" && $_SERVER['QUERY_STRING'] != "/") {
$q = $_SERVER["QUERY_STRING"];
}
?>
<script>
var q="<?php echo $q ?>";
q = q.replace(".", "");
setTimeout("document.location='https://www.webosarchive.org' + q", 3500)
</script>
</head>
<body>
<table width="100%" height="100%" border="0">
<tr><td width="100%" height="100%" align="center" valign="middle">
<!-- Truck icon created by Freepik - Flaticon.com -->
<img src="moving-truck.png" alt="This domain expires in 2024 and will not be renewed. Update your bookmarks to the new .org domain" title="This domain expires in 2024 and will not be renewed. Update your bookmarks to the new .org domain">
<h1>webOSArchive.com is now <a href="https://www.webosarchive.org">webOSArchive<b>.org</b></a></h1>
Please update your bookmarks!
</td></tr>
</table>
</body>
</html>