1.登录WordPress后台 - 设置 - 常规 - 将WordPress地址(URL)/站点地址(URL) 地址修改为https格式
2.部份url地址已写入数据库通过后台方式无法更新的,可以使用phpmyadmin或其他管理工具将数据库中http替换为https
3. 继续修改wp-includes/load.php或wp-includes/functions.php 这个文件,搜索is_ssl找到对应的函数,将$_SERVER['HTTPS']修改为$_SERVER["HTTP_FROM_HTTPS"](修改文件前请注意备份)。
- function is_ssl() {
- if ( isset( $_SERVER['HTTPS'] ) ) {
- if ( 'on' == strtolower( $_SERVER['HTTPS'] ) ) {
- return true;
- }
- if ( '1' == $_SERVER['HTTPS'] ) {
- return true;
- } //Vevb.com
- } elseif ( isset($_SERVER['SERVER_PORT'] ) && ( '443' == $_SERVER['SERVER_PORT'] ) ) {
- return true;
- } elseif (isset($_SERVER["HTTP_FROM_HTTPS"])&&$_SERVER["HTTP_FROM_HTTPS"]=='on'){
- return true;
- }
- return false;
- }
新闻热点
疑难解答
图片精选