ルート構成でネストされたリソースを設定しようとしていますが、問題がどこにあるのかわかりません。
ここに私のルート構成からの関連コードがあります
resources :positions, :only => [:new,:create,:edit,:update,:destroy]
resources :etkh_profiles, :path => "members", :only => [:new,:create,:show,:index] do
resources :positions
collection do
post 'search'
end
end
「/positions/new」を試すと機能しますが、「members/positions/new」を試すとこのエラーが発生します
No route matches [GET] "/members/positions/new"
何か案は?ご協力いただきありがとうございます。