Hi,

I get a very strang error when I deploy my rails 2.2.2 application to
the server. The application works when I start it with script/server.
but when I deploy the app to rails host server (I think it runs with
lighttpd or something). I can only acess the page with first level URL
(i.e., http://test6.123server.cn/users). But I can't access the second
level URL (i.e., http://test6.123server.cn/users/1  
http://test6.123server.cn/users/new).
I get http 404 error which indicate the page can't be found. I guess
there is something wrong with the route. But my route is very simple
(attached below). Anyone had the same problem before? thanks.

My route.rb file
--------------------------------------------------------------------------------
ActionController::Routing::Routes.draw do |map|
  map.resources :users
  #..
  map.connect ':controller/:action/:id'
  map.connect ':controller/:action/:id.:format'
end
-----------------------------------------------------------------------------

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to