Trouble routing with sub controller

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

On Jul 30, 9:50 am, Jack [email protected] wrote:

https://server.edu/admin/customer/list
Thanks,
Jack

As a follow up, I just checked the version of mongrel on my local
system and the server. Localhost is running Mongrel version 1.1.3. The
SSL server is running Mongrel version 1.0.1 Could the older version on
the server be causing a problem with this?