dedecms调用二级域名图片不显示(可能遇到跨域问题)解决

找到include的文件extend.func.php

function replaceurl($newurl)
{
$newurl=str_replace('src="/uploads/','src="'.$GLOBALS['cfg_basehost'].'/uploads/',$newurl);
return $newurl;

}

然后在详情页调用时候标签{dede:field.body/}修改成{dede:field.body function='replaceurl(@me)'/}
倘若提示跨域问题

image.png

在请求页面头部加上下面这段代码即可

你可能感兴趣的:(dedecms调用二级域名图片不显示(可能遇到跨域问题)解决)