最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

https - my homepage does not have SSL but another page is ok

programmeradmin0浏览0评论

I have use plugin Really simple SSL to enable my site to https. Everything is ok but when wordpress update my site automatically to 4.8.4. Only my homepage do not work for https otherwise another pages are ok. You can see some example in this image:

My homepage when loading:

My homepage when full load:

Another page is ok:

Inaddition infomation:

My homepage:

Another page:

Wordpress version: 4.8.4

Thank you in advance

I have use plugin Really simple SSL to enable my site to https. Everything is ok but when wordpress update my site automatically to 4.8.4. Only my homepage do not work for https otherwise another pages are ok. You can see some example in this image:

My homepage when loading:

My homepage when full load:

Another page is ok:

Inaddition infomation:

My homepage: https://winecellar.vn

Another page: https://winecellar.vn/ruou-cao-cap/ruou-chi-le

Wordpress version: 4.8.4

Thank you in advance

Share Improve this question asked Dec 7, 2017 at 10:12 mrleezoomrleezoo 111 silver badge2 bronze badges
Add a comment  | 

3 Answers 3

Reset to default 1

Your home is working on SSL but some elements might not be loaded from https but http like third party images or scripts. Look in source of your home site generated by browser and search for http: phrase to find which elements you should fix.

You may please use this query on your database to change url from http:// to https://

UPDATE wp_options SET option_value = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_postmeta SET meta_value =  REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET post_content =  REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET post_excerpt =  REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET guid =  REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');

Go to the page that is not loading secure. Right click on your mouse, click inspect. click console and you will find the error. Mine was my logo image was not loading secure. I simply deleted it from my page and then re-uploaded the same image. Bam! fixed. Some other possible places you can locate the error is right clicking the page and view page source. ctrl "f" and enter http in the search bar. It will let you find any other place you may have something loading not secure.

发布评论

评论列表(0)

  1. 暂无评论