如何将http://localhost:3000/users/sign_in设置为http://localhost:3000,以便在用户现在没有登录时使用它成为根路径
authenticate :user do
root :to => "home#index"
end
现在,如果用户未经过身份验证,则需要http://localhost:3000/users/sign_in,但我需要http://localhost:3000是否有可能这样做我也尝试使用devise_for将路径设置为空这样3 p>
devise_for :users, :path => "", :path_names => {:sign_in => ''}
但我认为这不是确切的做法。 plz提前帮助我了解