織夢(mèng)在v5.7版本中開(kāi)啟子域名或二級(jí)域名后,由于文章頁(yè)面讀取的是相對(duì)路徑,所以導(dǎo)致圖片顯示出現(xiàn)問(wèn)題。解決的方法很簡(jiǎn)單,下面帖出修改的路徑:
修改目錄include下的文件extend.func.php,在最后面添加一個(gè)函數(shù)方法
function replaceurl($newurl) { $newurl=str_replace('src="/uploads/allimg/','src="http://你的域名/uploads/allimg/',$newurl); return $newurl; } 另外調(diào)用文章正文內(nèi)容的標(biāo)簽{dede:field.body/}
需要改成: {dede:field.body function='replaceurl(@me)'/}
此方法對(duì)解決二級(jí)域名圖片不顯示一樣有效