Rails 中的多级子域
Rails 中可以有这样的多级子域吗?
sub1.sub2.mysite.com
Can we have multi-level subdomain in Rails like this?
sub1.sub2.mysite.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Rails 中可以有这样的多级子域吗?
sub1.sub2.mysite.com
Can we have multi-level subdomain in Rails like this?
sub1.sub2.mysite.com
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是的,您可以使用 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
我不明白为什么你不能在 Rails 应用程序中使用子域的子域。
您需要在域 DNS 中设置通配符 A 记录,并将 http 服务器配置为接受通配符服务器别名。
然后,在您的 application_controller 中,您可能需要一个 before_filter 来执行一些
您想要的操作,无论是
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
to do whatever you want, be it
Account.find_by_domain(parsed_request_host)
or whatever.