ruby-on-rails – 如果定义了如何编写使用relative_url_root的重定向?

我目前正在使用 Ruby on Rails 3.2.8并在config / routes.rb中进行此重定向

root :to => redirect("/home/index.html")

适用于在开发中将http:// localhost:3000 /重定向到http:// localhost:3000 / home / index.html.但是在我的测试环境中,我正在使用代理和子路径,在config / environments / test.rb中设置relative_url_root,如下所示:

config.action_controller.relative_url_root = '/testpath'

所以我希望从http://testdomain.com/testpath重定向到http://testdomain.com/testpath/home/index.html,而是重定向到http://testdomain.com/home/index.html .

如果设置了,我如何更改我的重定向语句以使用relative_url_root?

解决方法

我不认为该方法已被弃用,但它是 does seem to be broken.您应该可以使用以下方法解决此问题:

root :to => redirect("#{ Rails.application.config.action_controller.relative_url_root }/home/index.html")

可能值得指出的是,这个bug在我的机器上是不可重现的(我使用的是瘦),你提出的代码按预期工作.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...