WordPress启用Https

1、更改网站URL为Https

进入WP后台,进入【设置】中【常规】将【WordPress地址(URL)】、【站点地址(URL)】两项修改为:https

2、修改配置文件wp-config.php

$_SERVER['HTTPS'] = 'on';
define('FORCE_SSL_LOGIN', true);
define('FORCE_SSL_ADMIN', true);

3、更新数据库

update wp_posts set post_content = replace(post_content, 'http://**.ntan520.com','https://**.ntan520.com');
update wp_posts set post_content = replace(post_content, 'http://**.ntan520.com','https://**.ntan520.com');

4、修改媒体文件域名

通过【设置】中【多媒体】菜单把【文件的完整 URL 地址】更改改为https 协议

发表评论