with a standard GET request defined as :
GET /remote_containers/:id/requestReady(.:format)
( :action=>"requestReady", :controller=>"remote_containers" )
I can process such request :
GET /remote_containers/1/requestReady?requestId=999999
but is it possible to write a match and constraint ?
in order to accept :
GET /acme/requestReady?requestId=999999 => /remote_containers/10/
requestReady?requestId=999999
i.e.
/acme being rewritten as /remote_containers/10 ( the sender
doesn't know the :id )
thanks for your feedback