Hello,
I've got an app that is working fine on my local system such that a URL like this
http://localhost:3000/admin/customer/list
routes to controller => admin/customer, action => list
and something like this
http://localhost:3000/admin/customer/show/2002
routes to controller => admin/customer, action => show, id => 2002
However, when I copy this to a server to run it there, the URL like
https://server.edu/admin/customer/show/2002
routes properly. But the URL like
https://server.edu/admin/customer/list
routes to controller => admin, action => customer, id => list
The routes.rb file is identical in both places. What would I want to look at on the server to figure out what I need to change? The only difference I see is the SSL URL in use on the server. But I can't imagine that's the culprit since one of the SSL URLs is working.
Anybody with some suggestions on what to check?
Thanks, Jack