我在 my.phpcloud.com 上运行 Zend Framework 应用程序(所以服务器配置应该没问题...)
索引页面工作正常,我修改了 application/controllers/IndexController.php 如下:
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$this->view->assign('hello', 'hello world!');
}
}
在 application/views/scripts/index/index.phtml 我打印 $this->hello 一切正常。
但是如果我创建一个新的控制器,比如 application/controllers/UserController.php
class UserController extends Zend_Controller_Action
{
public function indexAction()
{
$this->view->assign('name', 'Albert');
}
}
我在 application/views/scripts/user/index.phtml 中创建了视图,并像在索引视图中一样打印 $this->name。
但是当我访问时,http://myapp/user
我得到一个 Not Found 错误......有什么问题?