我目前正在使用
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?
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。