<1>wordprewss 站有时打开页面无样式。可根据一下步骤进行设置:
该步骤必须在网站已申请SSL证书基础上使用!!
第一步:系统文件修改
add_filter('script_loader_src', 'agnostic_script_loader_src', 20,2);
function agnostic_script_loader_src($src, $handle) {
return preg_replace('/^(http|https):/', '', $src);
}
add_filter('style_loader_src', 'agnostic_style_loader_src', 20,2);
function agnostic_style_loader_src($src, $handle) {
return preg_replace('/^(http|https):/', '', $src);
}
修改后的文件截图:
第二步:配置文件修改
$_SERVER['HTTPS'] = 'on';
define('FORCE_SSL_LOGIN', true);
define('FORCE_SSL_ADMIN', true);
修改后的文件截图:
发表评论 取消回复