Rails 3 的一个很好的解决方案是使用 Rack。这是一篇很棒的文章,概述了该过程:使用 Rack 服务不同的 Robots.txt。总而言之,您将其添加到您的 routes.rb 中:
# config/routes.rb
require 'robots_generator' # Rails 3 does not autoload files in lib
match "/robots.txt" => RobotsGenerator
然后在 lib/robots_generator.rb 中创建一个新文件
# lib/robots_generator.rb
class RobotsGenerator
# Use the config/robots.txt in production.
# Disallow everything for all other environments.
# http://avandamiri.com/2011/10/11/serving-different-robots-using-rack.html
def self.call(env)
body = if Rails.env.production?
File.read Rails.root.join('config', 'robots.txt')
else
"User-agent: *\nDisallow: /"
end
# Heroku can cache content for free using Varnish.
headers = { 'Cache-Control' => "public, max-age=#{1.month.seconds.to_i}" }
[200, headers, [body]]
rescue Errno::ENOENT
[404, {}, ['# A robots.txt is not configured']]
end
end
最后确保将 move robots.txt 包含到您的配置文件夹中(或您在RobotsGenerator
类中指定的任何位置)。