如何告诉 Rails 应用程序的一部分在 www.mydomain.com/blog 下运行

发布于 2024-11-29 19:16:46 字数 441 浏览 0 评论 0原文

我有一个在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拿命拼未来 2024-12-06 19:16:46

rails 指南

scope "/blog" do
  resources :posts
end

它将映射 /blog/posts< /code> 到 posts#index

rails guides

scope "/blog" do
  resources :posts
end

it will map /blog/posts to posts#index

耳根太软 2024-12-06 19:16:46

您可以命名您的控制器和本 Rails 指南中描述的路线。

You can namespace your controllers & routes as described in this rails guide.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文