dedecms调用二级域名图片不显示(可能遇到跨域问题)解决
2019-05-13 本文已影响0人
这真的是一个帅气的名字
找到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)'/}
倘若提示跨域问题
在请求页面头部加上下面这段代码即可
<meta http-equiv="Access-Control-Allow-Origin" content="*">