我正在使用sitemap_generator gem,除了运行我的rake任务时,一切正常:
heroku run rake sitemap:refresh --remote live
我得到以下结果:
In '/app/public/':
+ sitemap.xml.gz 2409 links / 20.5 KB
Sitemap stats: 2,409 links / 1 sitemaps / 0m04s
Pinging with URL 'http://www.decorissimo.es/sitemap.xml.gz':
Successful ping of Google
Successful ping of Bing
Pinging with URL 'http://www.decorissimo.es/sitemap.xml.gz':
Successful ping of Google
Successful ping of Bing
2409个链接。但后来我去了
mysite.com/sitemap.xml.gz
那里的网站地图只有199个链接。
我的sitemap.rb
require 'rubygems'
require 'sitemap_generator'
SitemapGenerator::Sitemap.default_host = "http://www.mywebe.com"
SitemapGenerator::Sitemap.create do
Photo.find_each do |photo|
add user_photo_path(photo.user_id, photo.id), :lastmod => photo.updated_at
end
User.find_each do |user|
add user_path(user.id), :lastmod => user.updated_at
end
end
SitemapGenerator::Sitemap.ping_search_engines # Not needed if you use the rake tasks
有什么想法吗?
谢谢!
答案 0 :(得分:0)
您可能希望将环境变量添加到cron作业
heroku run rake sitemap:refresh RAILS_ENV=production --remote live