Skip to content

Instantly share code, notes, and snippets.

@darth-veitcher
Created December 27, 2016 23:15
Show Gist options
  • Save darth-veitcher/f99b7ad8cdce080236369a0fe74e60e6 to your computer and use it in GitHub Desktop.
Save darth-veitcher/f99b7ad8cdce080236369a0fe74e60e6 to your computer and use it in GitHub Desktop.
Forwarding index.html
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1; url=static/index.html">
<script>
window.location.href = "static/index.html"
</script>
<title>Page Redirection</title>
</head>
<body>
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
If you are not redirected automatically, follow the <a href='static/index.html'>link to home page</a>.
</body>
</html>
@darth-veitcher
Copy link
Author

Borrowed from here

Forwards the browser to the /static/index.html that ghost creates

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment