我的服务器子目录中有一个rails应用程序,例如www.domain.com/sub 我需要通过电子邮件发送网址,所以我尝试使用“resource_url”,但它会生成一个类似www.domain.com/resource_path的链接,其中应该是wwww.domain.com/sub/resource_path。
我该如何解决这个问题?
谢谢!
答案 0 :(得分:0)
在Rails 2.3.8中,您可以在config/environments/production.rb
ActionController::Base.relative_url_root = "/sub"
我不确定Rails 3的等价物是什么,但如果你正在使用它,请看这个问题: What is the replacement for ActionController::Base.relative_url_root?