ruby 如何路由到robots.txt?

sbtkgmzw  于 2022-11-04  发布在  Ruby
关注(0)|答案(2)|浏览(165)

我从各种渠道得知**http://www.anthonygalli.com/robots.txt不存在。
我在
public/robots.txt**中有一个文件

User-agent: *
Allow: /
Sitemap: http://www.anthonygalli.com/sitemap.xml.gz

我怎样才能使路由工作,使错误消失,谷歌可以正确地抓取网站?

j9per5c4

j9per5c41#

确保在config/environment/production.rb中有以下行:

config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
zlwx9yxi

zlwx9yxi2#

或者,将下面一行添加到config/environment/production.rb中:

config.public_file_server.enabled = true

相关问题