You can do this with ZF using Zend_Controller_Router_Route_Static(phew!), For example:
Read the man page above, there are some good examples you can find.
$route = new Zend_Controller_Router_Route_Static(
'index.php',
array('controller' => 'index', 'action' => 'index')
);
$router->addRoute('index', $route);
I canβt say that I completely disagree with your approach. However, others may point to 5,000 or so deficiencies. Good luck with that.
source
share