私の問題は簡単に解決できるかもしれませんが、本当に理解できません。
「BeginningZendframework」という本の指示に従って新しいプロジェクトを作成しました。プロジェクトには、「アカウント」と「アーティスト」の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と入力すると、デフォルトのインデックスページ「Welcometo 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/artistreturn404エラー。_