Rails 中的多级子域

发布于 2024-08-03 18:21:22 字数 73 浏览 3 评论 0原文

Rails 中可以有这样的多级子域吗?

sub1.sub2.mysite.com

Can we have multi-level subdomain in Rails like this?

sub1.sub2.mysite.com

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

在风中等你 2024-08-10 18:21:22

是的,您可以使用 request.subdomains 检查应用程序访问的子域,

但是如果您打算执行更高级的操作,则可能应该使用
子域-fu

Yes, you can check the subdomain the app is accessed from using request.subdomains

But if you are going to do something more advanced you should probably use
subdomain-fu

彡翼 2024-08-10 18:21:22

我不明白为什么你不能在 Rails 应用程序中使用子域的子域。

您需要在域 DNS 中设置通配符 A 记录,并将 http 服务器配置为接受通配符服务器别名。

然后,在您的 application_controller 中,您可能需要一个 before_filter 来执行一些

request.host

您想要的操作,无论是

Account.find_by_domain(parsed_request_host) 还是其他。

I don't see any reason why you couldn't have a subdomain of a subdomain being used in a rails app.

You'll want to setup a wildcard A record in your domain DNS and configure your http server to accept wildcard server aliases.

Then in your application_controller you'll probably want a before_filter that does some juju with

request.host

to do whatever you want, be it

Account.find_by_domain(parsed_request_host) or whatever.

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