redirect.html 484 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>警告</title>
  6. </head>
  7. <body>
  8. <script>
  9. let newLink = location.href.replace('www-hk','www');
  10. document.write('<h2>您当前访问的页面已过期,请<a href="'+newLink+'">点击此处打开新页面</a>。需要重新登录。</h2>');
  11. document.write('<h2>The page has expired due to inactivity. Please <a href="'+newLink+'">CLICK HERE TO OPEN OUR NEW WEBSITE</a>.</h2>');
  12. </script>
  13. </body>
  14. </html>