I have a small problem with PHP Zend Framework. I have the following routes in file application.ini:
resources.router.routes.mainpage.route = "main-page.html"
resources.router.routes.mainpage.defaults.controller = "index"
resources.router.routes.mainpage.defaults.acion = "index"
If i do a direct in any action:
$this->_helper->redirector('index', 'index');
then i will be redirect to adress: my-project/public/index/index But i want to adress be a my-project/public/main-page.html (as it is determined application.ini)
Can somebody help me? P.S. Sorry for my english.