Zend框架友好的url路由路由器

时间:2014-07-22 11:33:19

标签: php zend-framework

我在zend的网页上遇到友好网址的问题。

现在我有moy页面的下一个网址: http://example.com//info/page/name/about我需要它http://example.com/about

我试着在Bootstrap.php中添加一些代码:

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

但我收到404错误。

我探索了所有可能性,没有什么不适合我。有谁知道什么是问题???帮我。

1 个答案:

答案 0 :(得分:0)

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