Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradoyler/e2241c3b0487de090be7 to your computer and use it in GitHub Desktop.
Save bradoyler/e2241c3b0487de090be7 to your computer and use it in GitHub Desktop.
redirect to new domain using location API https://developer.mozilla.org/en-US/docs/Web/API/Window.location
if (window.location.href.indexOf('://custom.me') === 0) {
window.location.replace('http://projectname.io' + window.location.pathname);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment