diff --git a/app/views/list/list.rss.erb b/app/views/list/list.rss.erb
index b1eb41f10..7cc954ec2 100644
--- a/app/views/list/list.rss.erb
+++ b/app/views/list/list.rss.erb
@@ -30,7 +30,7 @@
<%= topic.pinned_at ? 'Yes' : 'No' %>
<%= topic.closed ? 'Yes' : 'No' %>
<%= topic.archived ? 'Yes' : 'No' %>
- topic-<%= topic.id %>
+ <%= Discourse.current_hostname %>-topic-<%= topic.id %>
<% end %>
diff --git a/app/views/posts/latest.rss.erb b/app/views/posts/latest.rss.erb
index 7cfb0a8e1..8f97eff3f 100644
--- a/app/views/posts/latest.rss.erb
+++ b/app/views/posts/latest.rss.erb
@@ -14,7 +14,7 @@
]]>
<%= Discourse.base_url + post.url %>
<%= post.created_at.rfc2822 %>
- post-<%= post.id %>
+ <%= Discourse.current_hostname %>-post-<%= post.id %>
<% end %>
diff --git a/app/views/topics/show.rss.erb b/app/views/topics/show.rss.erb
index e49890e2d..aa7d08c4a 100644
--- a/app/views/topics/show.rss.erb
+++ b/app/views/topics/show.rss.erb
@@ -30,7 +30,7 @@
]]>
<%= post_url %>
<%= post.created_at.rfc2822 %>
- post-<%= post.topic_id %>-<%= post.post_number %>
+ <%= Discourse.current_hostname %>-post-<%= post.topic_id %>-<%= post.post_number %>
<% end %>