Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created August 19, 2016 16:53
Show Gist options
  • Save Sysetup/822f238b97388f91ed57178d5a5b3f8d to your computer and use it in GitHub Desktop.
Save Sysetup/822f238b97388f91ed57178d5a5b3f8d to your computer and use it in GitHub Desktop.
Remove .html from url in a static website
var url = window.location.href;
url = url.split('.html')[0];
//url = url.substring(0, url.lastIndexOf("."));
window.history.replaceState( null, null, url );
@tranviet0710
Copy link

Thank you so much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment