首页 > 教程 >

织梦dedecms绑定二级域名导致图片路径不对的解决方法

2023-04-01教程围观

简介文章介绍打开include/extend.func.php文件在此文件中增加如下函数:functionreplaceurl($newurl){$newurl=str_replace(‘src="/uploads/allimg/’,’http://你的域名/uploads/allimg/’,$newurl);return$newurl;}调用文章正文内

   文章介绍

打开 include/extend.func.php 文件
在此文件中增加如下函数:
function replaceurl($newurl)
{
$newurl=str_replace(‘src="/uploads/allimg/’,’http://你的域名/uploads/allimg/’,$newurl);
return $newurl;
}

调用文章正文内容的标签 {dede:field.body/} 需要改为 {dede:field.body function=’replaceurl(@me)’/}
 
 
 

下载链接:网站源码/小程序源码/网站模板下载

Tags: 织梦 方法 图片 路径 绑定