Created
January 27, 2018 01:14
-
-
Save yoyoys/e51c7359bdbea574c2f933e47a9827d0 to your computer and use it in GitHub Desktop.
static html+js Redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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