Skip to content

Instantly share code, notes, and snippets.

@nabettu
Created March 23, 2018 04:54
Show Gist options
  • Save nabettu/1c2727fc9f52753e9e91eb590d0cb769 to your computer and use it in GitHub Desktop.
Save nabettu/1c2727fc9f52753e9e91eb590d0cb769 to your computer and use it in GitHub Desktop.
HTTPSだったらHTTPにリダイレクトする
if(location.protocol.match('https:')){
location.replace(location.href.replace('https:','http:'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment