Skip to content

Instantly share code, notes, and snippets.

@shankcode
Created February 19, 2021 18:19
Show Gist options
  • Save shankcode/be37b0e07976f4406e58f288a9a71b99 to your computer and use it in GitHub Desktop.
Save shankcode/be37b0e07976f4406e58f288a9a71b99 to your computer and use it in GitHub Desktop.
www to non-www redirect website
// www redirection to non-www (SEO)
if (window.location.host.startsWith("www")) {
let host = window.location.host;
window.location.replace(`${window.location.protocol}//${host.substring(4, host.length)}${window.location.pathname}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment