https://dash.cloudflare.com/
域名解析需要 在cloudflare 做SSL/TLS 加密链接设置
灵活
加密浏览器与 Cloudflare 之间的流量
后台设置的链接不用改变,使用真实的HTTP链接。
在wordpress functions 上做域名替换。文章来源:https://www.toymoban.com/news/detail-838939.html
//if( is_ssl() ){ } 加判断
function replacehttp($content){
$content = str_replace('http://xx.com/wp-content/uploads', 'https://xx.com/wp-content/uploads', $content);
return $content;
}
add_filter('the_content','replacehttp');
add_filter( 'max_srcset_image_width', create_function('', 'return 1;'));//去掉srcset
完美文章来源地址https://www.toymoban.com/news/detail-838939.html
到了这里,关于利用 cloudflare 实现域名HTTP转变成 HTTPS的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!