0

subdomain-fu gem 中的tld_size是什么意思。例如聋哑人,

  SubdomainFu.tld_sizes = {:development => 1,
   :test => 0,
   :production => 1}

在我的初始化程序/子域-fu.rb

4

1 回答 1

0

我已经调试并找到了答案,

如果配置如下意味着,

 SubdomainFu.tld_sizes = {:development => 1,
  :test => 0,
  :production => 1}

如果您的 URL 是 test.lvh.me:3000 意味着 subdomain-fu gem 的 current_subdomain 将返回 test。如果您设置 tld_size 如下所示,

 SubdomainFu.tld_sizes = {:development => 1,
  :test => 0,
  :production => 0}

那么你的 URL 是 test.lvh.me:3000 意味着 subdomain-fu gem 的 current_subdomain 将返回 test.lvh

谢谢...

于 2013-05-22T09:07:10.840 回答