Last active
August 29, 2015 14:05
-
-
Save emwiles/3d9382aa8cc74edb11fd to your computer and use it in GitHub Desktop.
Script to force a web page to open a different URL
This file contains 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
<script> | |
var h = window.location.host; | |
var f = 'http://yoururl.com'; | |
window.location.replace(f); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment