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

SSL not working fine, Home url not matching with site url wordpress errors

programmeradmin2浏览0评论

I deployed WordPress through Bitnami so after adding an SSL certification I started getting warnings from my WordPress dashboard of my site URL not matching with Home URL I was directed to my WordPress settings To reset back to instead of http but I saw that I could not do that on the my settings, I had to login my Myphpadmin to do it there but WP-OPTION still has the correct URL which is but still not reflecting on my WordPress

My problem now is why is the URL on my WordPress General settings is / instead of and still cannot be changed from there or why is the site URL on my wp-option not same with the one on my WordPress General settings.

Thank you

I deployed WordPress through Bitnami so after adding an SSL certification I started getting warnings from my WordPress dashboard of my site URL not matching with Home URL I was directed to my WordPress settings To reset back to https://www.healthviewonfraweb.xyz instead of http but I saw that I could not do that on the my settings, I had to login my Myphpadmin to do it there but WP-OPTION still has the correct URL which is https://www.healthviewonfraweb.xyz but still not reflecting on my WordPress

My problem now is why is the URL on my WordPress General settings is http://www.healthviewonfraweb.xyz/ instead of https://www.healthviewonfraweb.xyz and still cannot be changed from there or why is the site URL on my wp-option not same with the one on my WordPress General settings.

Thank you

Share Improve this question asked Aug 18, 2020 at 1:19 FrancisFrancis 1
Add a comment  | 

1 Answer 1

Reset to default 0

There are two ways of seeting the Site URL.

  1. In the dashboard.
  2. In the wp-config.php file.
  3. In the functions.php file.

If you cannot change Option 1 above, then you should NOT edit the table in PhpMyAdmin. Check for the following in wp-config.php:

define( 'WP_HOME', 'http://example' );
define( 'WP_SITEURL', 'http://example' );

If you can't find that, then check in your functions.php for:

update_option( 'siteurl', 'http://example' );
update_option( 'home', 'http://example' );

You can read more here

发布评论

评论列表(0)

  1. 暂无评论