I have a module called users. Inside I have an index controller, with an action called part1Action() inside the index controller class.
I expected to be able to access the part1Action() action through the path /user/index/part1, but I'm ending up in the /user/index/index action.
I have other modules set up that are working from a module/controller point of view, but I've not tried accessing other actions apart from the index action in these, so this is the first time I've tried routing to other than the index action.
More info, I have this in my application.ini:
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.modules = ""
autoloaderNamespaces[] = "Users_"
Where am I going wrong?