我正在尝试在 rails 中设置两条不同的路线,每条路线都链接到不同的子域
这是我想做的事情
match "/" => "first_app#index",
as => :first_app_root,
:subdomain => 'application'
match "/" => "second_app#index",
:as => :second_app_root,
:subdomain => 'another_application'
我想要得到的结果当然是application.my_website
指向 FirstAppController 的 index 动作和another_application.my_website.dev
指向 SecondAppController 的 index 动作。
first_app_root_url
和helper 函数也second_app_root_url
应该创建带有正确子域的 url
那可能吗?