Is there an easy way to create a sitemaps file for Rails projects? Especially for dynamic sites (such as Stack Overflow for example) there should be a way to dynamically cre
This article explains how a sitemap can be generated.
Basically should should create a controller which finds all pages (eg your Posts) and put in into an XML file. Next you tell Google about the location of the XML file and when your website is updated.
A simple Google rails sitemap query reveals lots of other articles explaining basically the same thing.