-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
54 lines (54 loc) · 1.81 KB
/
index.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
* RESTfm report redirection.
*
* @copyright
* Copyright (c) 2011-2017 Goya Pty Ltd.
*
* @license
* Licensed under The MIT License. For full copyright and license information,
* please see the LICENSE file distributed with this package.
* Redistributions of files must retain the above copyright notice.
*
* @link
* http://restfm.com
*
* @author
* Gavin Stewart
-->
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache-control" content="no-store">
<meta http-equiv="Cache-control" content="must-revalidate">
<meta http-equiv="Cache-control" content="max-age=0">
<meta http-equiv="Expires" content="0">
<meta http-equiv="refresh" content="5;url=report.php" />
<style type="text/css">
body {
font-family: Lucida Grande, Lucida Sans, Arial, sans-serif;
font-size: 62.5%;
}
div {
font-size: 1.3em;
}
</style>
<script type="text/javascript">
// Stop Safari from loading this page from cache. Other
// browsers honour the Cache-control directives.
window.onpageshow = function(event) {
if (event.persisted) {
window.location.reload()
}
};
</script>
<title>RESTfm is not configured</title>
</head>
<body onunload="">
<div>
<h3>RESTfm is not configured</h3>
Redirecting (in 5 seconds) to <a href="report.php">RESTfm report</a> for diagnosis.
</div>
</body>
</html>