Skip to content

Instantly share code, notes, and snippets.

@bencao
Last active October 5, 2021 16:57
Show Gist options
  • Save bencao/f25ad9af3115781dd2b460ecf0245db0 to your computer and use it in GitHub Desktop.
Save bencao/f25ad9af3115781dd2b460ecf0245db0 to your computer and use it in GitHub Desktop.
redirect if url does not end with slash
if (window && window.location && !window.location.href.endsWith("/")) {
window.location = window.location.href + "/";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment