/ Published in: PHP
You have to add this code in your Bootstrap
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Add this in your bootstrap */ protected function _initRoutes() { $ctrl = Zend_Controller_Front::getInstance(); $router = $ctrl->getRouter(); //match every call on http://ZEND_ROOT/aZ2s-Ty9 $route = new Zend_Controller_Router_Route_Regex('([a-zA-Z0-9]+\-[a-zA-Z0-9]+)', //dispatch this to the VController 'controller' => 'v', // iAction() 'action' => 'i' ), //send the captured value has the "e" parameters of the request 1 => 'e' ) ); //give a name to your route and add it to the default router $router->addRoute('view',$route); }