Skip to content

Instantly share code, notes, and snippets.

@yoyoys
Created January 27, 2018 01:14
Show Gist options
  • Save yoyoys/e51c7359bdbea574c2f933e47a9827d0 to your computer and use it in GitHub Desktop.
Save yoyoys/e51c7359bdbea574c2f933e47a9827d0 to your computer and use it in GitHub Desktop.
static html+js Redirect
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="5; url=http://example.com">
<title>Document</title>
</head>
<body>
<script>
window.location = 'http://example.com'
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment