Skip to content

Instantly share code, notes, and snippets.

@smilecc
Last active December 11, 2017 09:32
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 smilecc/c753ee0b42595d8792c9542c5ec0757a to your computer and use it in GitHub Desktop.
Save smilecc/c753ee0b42595d8792c9542c5ec0757a to your computer and use it in GitHub Desktop.
Redirect to .html
var extPos = window.location.href.lastIndexOf('.html');
if (extPos === -1 || extPos !== window.location.href.length - 5) {
window.location.href = window.location.href + '.html'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment