How to specify default module in Zend Framework? -


by default zend framework specifies "default" module default module of application. want "frontend" module default module in app. how can this?

in 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" default module. if you're interested in changing url structure, use custom routes. example

resources.router.routes.frontend.route = "frontend/:controller/:action/*" resources.router.routes.frontend.defaults.module = "default" 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -