解决方法:

1.找到dede的后台目录,在后台目录下的inc下找到inc_archives_functions.php

2.搜索GetCurContent函数,找到如下这段代码:

preg_match_all("/src=[\"|'|\s]{0,}(http:\/\/([^>]*)\.(gif|jpg|png))/isU",$body,$img_array);

3.注释这段代码,并加入如下代码:

preg_match_all("/src=[\"|'|\s]{0,}(http:\/\/([^>]*))(\"|'|\s)/isU",$body,$img_array);