我在 RoR 中有一个简单的问题,我找不到简单的解决方案
我有一个 www.example.com/items 文件夹,我想为每个网址将其重命名为 www.example.com/admin。
有没有办法在 routes.rb 中做到这一点?我试过这个
这是我在 routes.rb 上命名它的方式:
Portal::Application.routes.draw do
resources :items do
resources :requisitos
resources :videos
end
但它没有用。
另外,我不能只重命名文件夹,因为有很多文件和链接依赖于它。