js 實現 http 強制重定向至 https


js 實現 http 強制重定向至 https

 

var reg = /^(192.168.1.)/;
    if(window.location.hostname !== 'localhost' && !reg.test(window.location.hostname)) {
      // 判斷非本地server時 http強制轉換成https
      var targetProtocol = "https:";
      if (window.location.protocol != targetProtocol)
      window.location.href = targetProtocol +
      window.location.href.substring(window.location.protocol.length);
    }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM