0
votes

I have a problem with friendly url for my pages in zend.

Now I have next url for moy pages : http://example.com//info/page/name/about and I need it to be http://example.com/about

I tried to put some code in my Bootstrap.php:

$router->addRoute('aboutpage', new Zend_Controller_Router_Route('/about' array('controller' => 'info', 'action' => 'about')));

but I receive 404 error.

I explored all possibilities and nothing not working for me. Does anybody know what can be a problem ??? Help me.

1

1 Answers

0
votes
$router->addRoute('about', new Zend_Controller_Router_Route('about' array('controller' => 'info', 'action' => 'about')));