hi,i have update the zendframework to 1.5,but a bit problem with zend route
class IndexController extends Zend_Controller_Action
{
function init()
{
$this->initView();
$this->view->baseUrl = $this->_request->getBaseUrl();
// Zend_Loader::loadClass('Album');
}
function indexAction()
{
echo "<p>why</p>";
$this->render();
}
function addAction()
{
echo "<p>add</p>";
}
function editAction()
{
}
function deleteAction()
{
}
http://localhost/app/test/ Yes
http://localhost/app/test/index/index No
http://localhost/app/test/index/add no
why?
can you tell me?
thank you!
--
View this message in context:
http://www.nabble.com/a-zend-route-problem-tp15221710s16154p15221710.html
Sent from the Zend Framework mailing list archive at Nabble.com.