Url Friendly

Hi guys, i’m lucas from spain. I try to configurate the urlmanager to a url like:

http://myweb.com/param_value_1/param_value_2/param_value_3

I’ve got a url working fine with one parametre passed by url,

http://myweb.com/param_value_1

with this rule:


'<user:\w+>'=>'admin/userFile',

but this other rule doesn’t work:


 '<user:\w+>/<name:\w+>/<idstuff:\d+>'=>'admin/stuffFile', 

i’ve put this last rule over the first one, but i get none result.

Only work if i specify the controller in the url like this:




'<controller:\w+>/<user:\w+>/<name:\w+>/<idstuff:\d+>'=>'admin/stuffFile'



how can i get the first url? can i remove the controller from de url??

thanks a lot!! regards from Spain!

try this might help

‘<user>/<name>/<idstuff>’=>‘admin/stuffFile’,