赞
踩
域名解析需要 在cloudflare 做SSL/TLS 加密链接设置
灵活
加密浏览器与 Cloudflare 之间的流量
后台设置的链接不用改变,使用真实的HTTP链接。
在wordpress functions 上做域名替换。
- //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
完美
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。