forked from bajins/ygbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
37 lines (33 loc) · 876 Bytes
/
404.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>404</title>
<style>
body {
background-color: #444;
font-size: 14px;
}
h3 {
font-size: 60px;
color: #eee;
text-align: center;
padding-top: 30px;
font-weight: normal;
}
</style>
</head>
<body>
<h3>404,您请求的文件不存在!</h3>
</body>
<script type="text/javascript">
window.onload = function() {
var href = window.location.href;
if (href.indexOf("index.php?s=/Admin/Index/pick/action/runpick") != -1) {
window.location.reload();
}
}
</script>
</html>