서버가 닫힌 경우 리다이렉트하도록

This commit is contained in:
2020-06-03 01:51:31 +09:00
parent 94fd8d5e9d
commit 1500e8e54f
2 changed files with 61 additions and 29 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>닫혀 있습니다.</title>
<script>
setTimeout(function(){
window.location = window.location+'/../';
}, 5000);
</script>
<style>
html, body{
background-color:black;
color:yellow;
}
</style>
</head>
<body>
서버가 닫혀있습니다.<br>
잠시 뒤에 입구로 이동합니다.
</body>
</html>