diff --git a/lib/import_export/topic_exporter.rb b/lib/import_export/topic_exporter.rb
index 962416c2488..78b4dc4d9eb 100644
--- a/lib/import_export/topic_exporter.rb
+++ b/lib/import_export/topic_exporter.rb
@@ -71,7 +71,9 @@ module ImportExport
       topic_data[:posts] = []
 
       topic.ordered_posts.find_each do |post|
-        topic_data[:posts] << POST_ATTRS.inject({}) { |h, a| h[a] = post.send(a); h; }
+        h = POST_ATTRS.inject({}) { |h, a| h[a] = post.send(a); h; }
+        h[:raw] = h[:raw].gsub('src="/uploads', "src=\"#{Discourse.base_url_no_prefix}/uploads")
+        topic_data[:posts] << h
       end
 
       @export_data[:topics] << topic_data