How can I get these 2 routes (languages, amdin) to work.. alone admin, or language will work but together they will fail :(
I\'d like to change the way URLs that Zend Framework is generating from this: $routeString = \'/section/:sectionName\';
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
Imagine situation, when the url should looks like /catalog/sectionIdent?page=1 where page param is optional.
This allows me to get easyly dynamic input variables instead of putting a static prefix like /en/etcetcetc, but the problem is all controllers are blocked. Everything goes to index/index.
i\'ve got a problem with the following routes.ini configuration file of my Zend Framework PHP Application. I would like to use just own created static urls. I dont\'t want use some kinds of :language/
I am trying to create a Zend_Controller_Router_Route_Regex route to process URLs in the following form:
I\'m currently working with Zend for my project. This project had categories. Usually, I\'d rewrite the URL\'s with Zend routes so I can reach my page as following: http://site.ext/category/[category-
I need to trim the first part of my url Example /param1/12234/module/controller/action would be开发者_JAVA技巧come /module/controller/action/param1/12234
Please help! I am a newbie to Zend and want to modifiy the default routing for a cms project I am working on.