在WordPress帖子/页面中将http更改为https的SQL查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress帖子/页面中将http更改为https的SQL查询相关的知识,希望对你有一定的参考价值。
More info: https://www.catswhocode.com/blog/install-https-wordpress
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://yoursite.com', 'https://yoursite.com' ) ; UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://www.yoursite.com', 'https://www.yoursite.com' ) ;
以上是关于在WordPress帖子/页面中将http更改为https的SQL查询的主要内容,如果未能解决你的问题,请参考以下文章
在wordpress网站中将http更改为https,激活ssl证书
在 wordpress 中将默认 URL 更改为 root 时遇到问题
如何在wordpress中将localhost url更改为ip?