导航到 时localhost:3000
,我想导航到:localhost:3000/workers
。
所以我改为public/index.html
and public/index.html.bak
in routes.rb
,我定义了以下内容:
devise_for :users do get '/users/sign_out' => 'devise/sessions#destroy' end
resources :tasksadmins
resources :workers
root to: "workers#index"
但是,它不起作用。该页localhost:3000
面向我显示了欢迎登机页面。
我该如何解决?任何帮助表示赞赏。