错误页面503.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8" />
<script>
var time = 3
setInterval(function() {
time--;
if(time === 0){
window.location.href = "./../download.html"
}

}, 1000)
</script>




<style>
h1{
    margin: 0;
    padding: 0;
    height: 30px;
    border: 0px solid red;
    line-height: 300px;
}

h2{
    margin: 0;
    padding: 0;
    height: 30px;
    border: 0px solid red;
    line-height: 300px;
}


</style>
</head>
<h1> <p align="center">当前访问量较大</p> </h1>
<h2> <p align="center">3秒后自动返回,请稍后重试</p> </h2>
</html>