站点地图生成的 URL 中的点

Dot in sitemap generated URLs

我使用 sitemap gem 来生成我的 sitemap.xml.gz : https://github.com/kjvarga/sitemap_generator

但是当生成文件时,我在生成的 links 中遇到了问题。

我有 xxxx.com/posts.10073 但正确的 link 是 xxxx.com/posts/10073

这是我的部分 sitemap.rb,

SitemapGenerator::Sitemap.create do
  add root_path, :changefreq => 'weekly'
  Post.find_each do |post|
    add posts_path(post), :changefreq => 'dayly', :lastmod => post.updated_at if post.published?
  end
end

如何获得正确的link?

这是我的错,我在我的道路上犯了一个错误,不是posts_path(post)而是post_path(post),现在可以了,与好Url.

感谢您的回答。