Heroku:重定向 / 到 /features
如何将每个访问 mysite.com/ 的用户自动重定向到 mysite.com/features?
谢谢
How can I have make auto redirecting every user who goes to mysite.com/ to mysite.com/features?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置你的根路由来直接到达那里(这些是 Rails 3 路由):
in config/routes.rb
in app/controllers/contents_controller.rb
这不会做但是,重定向。为此,您需要这样的东西:
在 config/routes.rb 中
在 app/controllers/contents_controller.rb 中
Set your root route to direct folks there (these are Rails 3 routes):
in config/routes.rb
in app/controllers/contents_controller.rb
That won't do a redirect, however. To do that, you'll need something like this:
in config/routes.rb
in app/controllers/contents_controller.rb