问题
How to switch from http to https in a client side script. Do not change the URL otherwise. It should do nothing in https. The server replies the same to http and https. I need the rest of the Original URL to stay intact.
http://example.com --> https://example.com
http://example.com/a --> https://example.com/a
http://example.com/b --> https://example.com/b
回答1:
you can use javascript window.location.href property to reload page with https url
// current url: http://example.
if(window.location.href.substr(0,5) !== 'https'){
window.location.href = window.location.href.replace('http', 'https');
} // new url: https://example.
来源:https://stackoverflow.com/questions/40562181/how-to-switch-from-http-to-https-client-side