如何告诉 Rails 应用程序的一部分在 www.mydomain.com/blog 下运行
我有一个在 Heroku 上运行的应用程序。这个应用程序附带了一个博客。我们希望博客位于 www.mydomain.com/blog
下。在 Heroku 上,使用 2 个单独的应用程序是不可能实现的(我们能得到的最好的是 blog.mydomain.com
但这对我们不起作用,因为我们的应用程序使用通配符子域。
所以我们想要什么要做的是将两个应用程序(应用程序和博客 - 它们都是 Rails 应用程序)集成到一个 Rails 应用程序中
问题:
是否有一种简单的方法来配置路由,以便应用程序的“博客部分”将侦听以 /blog
开头的路由(例如,帖子控制器将响应 /blog /posts
而不是 /posts
)..?
非常感谢您的时间和见解。
I have an app that runs on Heroku. With this app comes a blog. We want the blog to live under www.mydomain.com/blog
. On Heroku this is not possible to achieve using 2 separate apps (best we can get is blog.mydomain.com
however this doesn't work for us, as our app uses wildcard subdomains.
So what we want to do is integrate the two apps (the app and the blog - they are both Rails apps) into one Rails app.
Questions:
Is there an easy way to configure routing in such a way that the 'blog part' of the app will listen to routes that start with /blog
(e.g. the posts controller would respond to /blog/posts
instead of /posts
)..?
Your time and insight is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
rails 指南
它将映射
/blog/posts< /code> 到
posts#index
rails guides
it will map
/blog/posts
toposts#index
您可以命名您的控制器和本 Rails 指南中描述的路线。
You can namespace your controllers & routes as described in this rails guide.