我正在尝试为我的域设置一个子network
域。在我的config/routes.rb
我有:
constraints :subdomain => /network.*/ do
...
# Root
match '/' => 'questions#index'
match '' => 'questions#index'
root :to => 'questions#index', :as => 'network_root'
end
root :to => 'frontend#home'
但是,有时当我访问 network.domain.com(在生产中)时,它会显示整个应用程序的根目录(frontend#home)。访问开发中的子域按预期工作。
编辑:我刚刚注意到对应用程序根目录 (domain.com/) 和子域根目录 (network.domain.com/) 的请求没有登录到我的 production.log 中。任何其他页面加载都按预期工作。