织梦dedecms绑定二级域名导致图片路径不对怎么办? 打开include/extend.func.php文件 在此文件中增加如下函数: function replaceurl($newurl) { $newurl=str_replace(src=/uploads/allimg/,http://你的域名/uploads
打开 include/extend.func.php 文件
在此文件中增加如下函数:
function replaceurl($newurl)
{
$newurl=str_replace(‘src="http://img.558idc.com/uploadfile/allimg/’,’http://你的域名http://img.558idc.com/uploadfile/allimg/’,$newurl);
return $newurl;
}
调用文章正文内容的标签 {dede:field.body/} 需要改为 {dede:field.body function=’replaceurl(@me)’/} 。