我要从URL中删除mysite.com/admin
我的路线.rb:
namespace :admin do
get 'account' => 'account#index'
patch 'account' => 'account#update'
resources :widgets
resources :sessions, only: %i[index show]
root 'dashboard#index', as: :dashboard
end
希望即使只是以管理员身份登录也只是mysite.com