I\'m pretty new to Zend (read the documents concerning routers and controllers). My StaticController and IndexController :
I want to create seo 开发者_开发技巧friendly urls in my Zend Framework application but how is the correct syntax for this:
A module of my project should have it\'s own domain so i created a route for it: $portalurl = str_replace( \'http://\', \'\', $config->开发者_C百科;domains->portal );
The problem is when generating Zend_Navigation menu in the view all links have \"/projects/add/\" href.
I have a trouble with zend_controller_Router_Route. I have created a route: $router = $this->frontController->getRouter();
I bumped into a problem and I can\'t seem to find a good solution to make it work. I have to make some dynamic routes into a Zend Framework project. I\'ll explain shortly what my problem is:
I\'d like to change the way URLs that Zend Framework is generating from this: $routeString = \'/section/:sectionName\';
i wanted to support multilingual structure for my work i used the following lines $controller=Zend_Controller_Front::getInstance();
I\'m setting up routes in application.ini, so when I try to access /moved, it displays cont/move. It works but only if I type moved all lower letters exactly like it\'s setup on the first line. How ca
Here I would like to have a tree of controllers different from that offered by Zend. Let me explain, in many of my projects I find myself with controllers with over 1000 lines of code which is not ver