dưới đây là bước mình hướng dẫn các bạn cách chuyển giao thức http sang https trong blogspot
Bước 1 : Các bạn vào mẫu trong blogspot
Bước 2 : Các bạn vào chỉnh sửa HTML
Bước 3 : Các bạn tìm đến đoạn </body> Xong dán code bên dưới vào và lưu lại sau khi gắn code vào xong bạn sửa lại link trên menu trong thành https và lưu lại nhé
<!--chuyensanghttps-->
<script type='text/javascript'>
function check_secure() {
var secssl = /^https/i;
var blog = document.location.hostname;
var slug = document.location.pathname;
var subs = window.location.search;
if (!window.location.origin.match(secssl)) {
window.location = "https://" + blog + slug + subs;
}
}
check_secure();
</script>
<!--endchuyensanghttps-->
<script type='text/javascript'>
function check_secure() {
var secssl = /^https/i;
var blog = document.location.hostname;
var slug = document.location.pathname;
var subs = window.location.search;
if (!window.location.origin.match(secssl)) {
window.location = "https://" + blog + slug + subs;
}
}
check_secure();
</script>
<!--endchuyensanghttps-->