I am trying to perform different actions stored in the same controller using yii.
I have an action called "test" and I can access it by typing the url "localhost/blah/test", this url calls the method "actiontest()" in my controller, now what I want is by typing "localhost/blah/test/create" access the method "actioncreate()" which is in the same controller.
Is there any way to achieve that?