我创建了一条查看用户个人资料的路线:
$router = Zend_Controller_Front::getInstance()->getRouter();
$route = new Zend_Controller_Router_Route(
'profile/:username',
array(
'username' => 'username',
'module' => 'core',
'controller' => 'profile',
'action' => 'view'
)
);
$router->addRoute('profile',$route);
当我去那里时,页面中的所有网址现在都显示http://127.0.0.1/project/public/profile。
我该如何解决?