织梦DEDECMS远程图片遇到https无法本地化的解决
网站建设 2022-07-27 09:12www.1681989.com免费网站
对于http的远程图片本地化,dedecms能很好解决,碰到https的就无法本地化了,推火网以下是解决办法 找到 dede//c/c_archives_functions.php文件里面GetCurContent($body)这个函数,里面 1 preg_match […]
对于http的远程图片本地化,dedecms能很好解决,碰到https的就无法本地化了,推火网以下是解决办法
找到 dede//c/c_archives_functions.php文件里面GetCurContent($body)这个函数,里面
|
这一段改为
|
第二步
1if(!preg_match(“#^http:\/\/#i”, $value))
2{
3contue;
4}
这一段改为
1if(!preg_match(“#^http:\/\/#i”, $value)&&!preg_match(“#^https:\/\/#i”, $value))
2{
3contue;
4}
搞定,这样发文章就可以快乐的把https的远程图片也本地化了。