Hey! :) Question, I try to define this route:
$objRouter->addRoute( "articlesCategoryIndex", new Zend_Controller_Router_Route( "articulos/categoria/:id", array( "module" => "article", "controller" => "index", "action" => "category" ) ) ); But seems like "articulos/categoria/:id" try to load the "categoria" controller, cause I try to print the $this->getRequest()->getParams() in the "category action" from the "index" controller in the "article" module and doesn't work. Should I try to use another Router type ? maybe Regex or something ? Thx.
