> If its possible, then how can i do it?
>
> That doesn't work:
> Router::connect('/:controller.php?action=:action&qs=*');ermm, the way urls are accessed is crucial to how cake works. To get to an edit method of you users class you do one of 2 things: 1. with mod rewrite: domain.com/users/edit 2. without mod rewrite: domain.com/index.php/users/edit The raw request is: domain.com/index.php?url=/users/edit, there's never individual params passed directly to cake like you've requested. Why are you trying to do this? Cheers, Jon -- jon bennett - www.jben.net - blog.jben.net Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" 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/cake-php?hl=en
