fossasia/loklak_search

View on GitHub
404.html

Summary

Maintainability
Test Coverage
<!doctype html>
<html>
  <head>
    <!-- This stores the URL the user was attempting to go to in sessionStorage,
    and then redirects all 404 responses to the app’s index.html page -->
    <script>
      sessionStorage.redirect = location.href;
    </script>
    <meta http-equiv="refresh" content="0;URL='http://loklak.org/'"></meta>
  </head>
  <body>
  </body>
</html>