fix: 403 페이지 redirect 버그 수정

This commit is contained in:
2021-10-27 01:29:19 +09:00
parent d2aea16744
commit 6b56eb79e1
+2 -2
View File
@@ -5,7 +5,7 @@
<title>닫혀 있습니다.</title> <title>닫혀 있습니다.</title>
<script> <script>
setTimeout(function(){ setTimeout(function(){
window.location = window.location+'/../'; window.location.href = '../';
}, 5000); }, 5000);
</script> </script>
<style> <style>
@@ -13,7 +13,7 @@
background-color:black; background-color:black;
color:yellow; color:yellow;
} }
</style> </style>
</head> </head>
<body> <body>