Routing resources for Rails에서 :id 매개변수의 이름 변경 동적 매개 변수 슬롯을 변경하는 방법을 둘러보았더니 정확한 작업을 수행하는 이 게시물을 발견했습니다.게시물은 https://thoughtbot.com/blog/rails-patch-change-the-name-of-the-id-parameter-in 입니다. 기본적으로 다음과 같은 경로를 사용하는 경우에는 다음과 같습니다. map.resources :clients, :key => :client_name do |client| client.resources :sites, :key => :name do |site| site.resources :articles, :key => :title end end 이러한 경로는 다음 경로를 ..