I am using Zend Framework version 1.12.16. I have created two modules i.e. user and admin. I have set user module as my default module by enabling it in application.ini:
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resouces.modules[]=
resources.frontController.defaultModule = "user"
So, whenever users the name of the site in the url he is automatically taken to index action of indexController
in user module. Similarly, I want the user to be taken to index action of the loginController
of admin module whenever user types in http://example.local/admin. Can I achieve that using some settings in application.ini ?