我的问题可能很容易解决,但我真的想不通。
我按照“Beginning Zend framework”一书中的说明创建了一个新项目。该项目有 2 个控制器“帐户”和“艺术家”。这是 /application 的树视图:
.
├── application
│ ├── Bootstrap.php
│ ├── configs
│ │ └── application.ini
│ ├── controllers
│ │ ├── AccountController.php
│ │ ├── ArtistController.php
│ │ ├── ErrorController.php
│ │ └── IndexController.php
│ ├── models
│ └── views
│ ├── helpers
│ └── scripts
│ ├── account
│ │ ├── activate.phtml
│ │ ├── index.phtml
│ │ ├── new.phtml
│ │ └── success.phtml
│ ├── artist
│ │ ├── index.phtml
│ │ └── list-all-artists.phtml
│ ├── error
│ │ └── error.phtml
│ └── index
│ └── index.phtml
例如,如何设置文档根目录以访问 /account/new.phtml?(输入 127.0.0.1 时,可以看到默认的索引页面“Welcome to the Zend Framework!”,但不知道如何访问其他页面)。
更多信息:+) 文档根目录是 /.../public/ (其中包含 .htacess 和 index.php) +) 127.0.0.1/index 也返回该页面,但 127.0.0.1/index/index.phtml 没有工作。 http://127.0.0.1/account , http://127.0.0.1/artist返回 404 错误。