[Rails] Re: simplify the entry point url for rails 3.2

2012-07-27 Thread radical
nvm, i already know how to used it.. they just rename the 'map.connect' to 'match'... lol so we just need to use this code match 'Person' , :controller= 'people', :action = 'list' -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post

[Rails] Re: simplify the entry point url for rails 3.2

2012-07-26 Thread Robert Walker
radical wrote in post #1069978: if in rails 2.3 we can use this syntax map.connect ' ', :controller = 'people', :action = 'action' the result it will simplify from http://localhost:3000/people/action to http://localhost:3000/ but in rails 3.2, we can't use map.connect right? i try to use :

[Rails] Re: simplify the entry point url for rails 3.2

2012-07-26 Thread radical
I think my topic title might be wrong due to my bad english.. actually, i try to change the change the url from http://localhost:3000/people/l http://localhost:3000/people/actionist to http://localhost:3000/ http://localhost:3000/people/actionsales_contact and not to set a root for website if