Nasıl Zend Framework benim özel yollarının tanımını kısaltabilir? Şu anda tanım olarak bu var:
$route = new Zend_Controller_Router_Route(
	":module/:id",
	array(
		"controller" => "index",
		"action" => "index"	
	),
	array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutOne', $route);
$route = new Zend_Controller_Router_Route(
	":module/:controller/:id",
	array("action" => "index"),
	array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutTwo', $route);
$route = new Zend_Controller_Router_Route(
	":module/:controller/:action/:id",
	null,
	array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutThree', $route);
Is there a way to better combine these rules? And what are your best practices in where to place these? I currently have them in my bootstrap class right after the Front Controller initialization.
 
			