解決方法:
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);
