open:404.html

404.html

<!doctype html>
<html lang="en">
 
<head>
  <meta charset="utf-8">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Redirecting</title>
</head>
 
<body onload="redirect()">
  <h1 style="text-align: center; padding-top: 50px; display: block;">Redirecting...</h1>
  <script>
    var loc = window.location;
 
    function redirect() {
      setTimeout(function () {
        loc.replace("/#" + loc.pathname + loc.search + loc.hash);
      }, 100);
    }
  </script>
</body>
 
</html>


  • open/404.html.txt
  • 마지막으로 수정됨: 2023/04/18 07:08
  • 저자 MORO