index.html 899 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="apple-mobile-web-app-capable" content="yes" />
  5. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  6. <meta charset="UTF-8">
  7. <meta name="theme-color" content="#4b75ff">
  8. <link rel="stylesheet" href="../script/semantic/semantic.min.css">
  9. <script src="../script/jquery.min.js"></script>
  10. <script src="../script/ao_module.js"></script>
  11. <script src="../script/semantic/semantic.min.js"></script>
  12. <title>Apache Redirection</title>
  13. <style>
  14. body{
  15. background-color:white;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. Redirecting to Apache Server on port 80..
  21. <script>
  22. window.location.href = location.protocol + "//" + window.location.hostname + ":80";
  23. </script>
  24. </body>
  25. </html>