您好我想将我的rails应用程序的根路径重定向到存在于特定命名空间内的控制器。这可能吗?
代码:
root to: 'production/static_pages#index'
我希望根路径重定向到我的生产命名空间内的static_pages控制器。
我试过了:
namespace :production do
root to: 'production/static_pages#index'
end
但是,它只将生产命名空间中的根路径指向适当的控制器。
答案 0 :(得分:0)
实际上,我的代码有效。
root to: 'production/static_pages#index'
正是如何将根路径连接到生产命名空间内的static_pages控制器。 对困惑感到抱歉! o.o