In my config file I've set the url rule like this :
<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>
And what happens is:-
controller/action/123 (work)
controller/action/hello (not work)
But it accepts only digit as the parameter.
What I want is that both digit and string should be accepted.
Please help!!!!