我想隐藏或屏蔽example.com/users/$ID/edit为example.com/profile/edit。
配置/路由.rb
resources :users
应用程序/控制器/users_controller.rb
def edit
@user = User.find(params[:id])
end
我试过添加路线
match '/profile/edit' => 'users#edit', :as => :edit_profile
但是,当我访问example.com/profile/edit时,编辑方法抱怨无法找到用户的 ID。
有没有办法可以从浏览器中屏蔽 ID?