Thứ Bảy, 21 tháng 4, 2018

Automatic HTTPS JavaScript Redirect

Here is javascript for redirect http to https
Copy and paste to head tag in html

if(window.location.protocol != 'https:') {
  location.href = location.href.replace("http://", "https://");
}
It's work for me!

0 nhận xét :

Đăng nhận xét