By default Zend Framework specifies "default" module is the default module of application. Now I want my "frontend" module is the default module in my app. How can I do this?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted

In your config file

resources.frontController.defaultModule = "frontend"

See http://framework.zend.com/manual/en/zend.application.available-resources.html#zend.application.available-resources.frontcontroller

Update

You cannot "rename" the default module. If you're only interested in changing the URL structure, use custom routes. For example

resources.router.routes.frontend.route = "frontend/:controller/:action/*"
resources.router.routes.frontend.defaults.module = "default"
link|improve this answer
Does it necessary to change the configurations in the application/Bootstrap.php file too? How about the prefixes of classes in each module? – quangtruong1985 Jul 1 '11 at 4:26
AFAIK, you cannot "rename" the default module. I'll update my answer with what I think you're after – Phil Jul 1 '11 at 4:35
Thanks so much. – quangtruong1985 Jul 1 '11 at 6:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.