I haven't used the Zend Router much yet so not sure how difficult or easy this is, but I think Zend is flexible so it's got to have a way to do this easily.
So I create a controller Cont
with 2 actions actone
and acttwo
. This naturally gives me
//the default index controller
site.com/
site.com/index/index
//and my controller
site.com/cont/index
site.com/cont/actone
site.com/cont/acttwo
Is there a way I can access the actone
action which is in the cont
controller using a route that looks like this
site.com/actone
I realize I could get this look by creating a separate controller called Actone
and this would be its index
action but this actone
action logically belongs to the Cont
controller, so I want to just give the appearance of that path.