导航至localhost:3000
时,我想导航至:localhost:3000/workers
。
所以我将public/index.html
更改为public/index.html.bak
,在routes.rb
中,我定义了以下内容:
devise_for :users do get '/users/sign_out' => 'devise/sessions#destroy' end
resources :tasksadmins
resources :workers
root to: "workers#index"
然而,它不起作用。页面localhost:3000
向我显示了欢迎登陆页面。
我该如何解决?任何帮助表示赞赏。
答案 0 :(得分:1)
似乎很好。你重启了服务器吗?