I have a trouble with zend_controller_Router_Route.

I have created a route:

$router = $this->frontController->getRouter(); 
$route = new Zend_Controller_Router_Route( 
   'catalog/:categoryIdent/:page',
       array( 'action' => 'index',
         'controller' => 'catalog', 
          'module' => 'storefront', 
          'categoryIdent' => '',
         'page' => 1 ), 
    array( 'categoryIdent' => '[a-zA-Z-_0-9]+', 
            'page' => '\d+' ) ); $router->addRoute('catalog_category', $route);

and this my view script:

 <div class="sub-nav">
  <h3>select <span>category</span></h3>
    <ul>
      <? foreach ($this->categories as $category): ?>
      <li><a href="<?=$this->url(array('categoryIdent' => $category->ident),   'catalog_category', true );?>"><?=$category->name; ?></a></li>
     <? endforeach; ?>
   </ul>

when i move mouse over a category, its href is exact (example :http://localhost/projectzend/chapter5/public/catalog/hats). But when i click, it return a url - http://localhost/

Where could be the problem?

link|improve this question
what is happening when you visit localhost/projectzend/chapter5/public/catalog/hats directly in your browser? – emaillenin May 19 '11 at 5:08
do you have throwExceptions(true) called on you front-controller? I guess the route does not work correctly and that you don't get notified about that (due to disabled exceptions) and you just get redirected to the base-url. – faileN May 19 '11 at 8:23
what does your DOCUMENT_ROOT point to? www or projectzend/chapter5/public? – Emerald214 May 20 '11 at 17:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.