Can't reach the new zend controller/view

Posted by Zakaria on Stack Overflow See other posts from Stack Overflow or by Zakaria
Published on 2010-03-13T23:31:59Z Indexed on 2010/03/13 23:35 UTC
Read the original article Hit count: 272

Filed under:
|
|

Hi, I've installed Zend Studio 7.1.1 that contains 1.9 framework. For the server side, I use easyphp (very similar to wamp)

When I create the project, I obviously obtain this architecture:

MyProject
|-- application
|   |-- Bootstrap.php
|   |-- configs
|   |   `-- application.ini
|   |-- controllers
|   |   |-- ErrorController.php
|   |   `-- IndexController.php
|   |-- models
|   `-- views
|       |-- helpers
|       `-- scripts
|           |-- error
|           |   `-- error.phtml
|           `-- index
|               `-- index.phtml
|-- library
|-- public
|   |-- .htaccess
|   `-- index.php
`-- tests
    |-- application
    |   `-- bootstrap.php
    |-- library
    |   `-- bootstrap.php
    `-- phpunit.xml

To launch the project, I enter:

http://127.0.0.1/MonProjet/public/index.php

But when I create a new controller (TestController.php) and the associated view (application.views/test/index.phtml) and when I enter:

http://127.0.0.1/MonProjet/public/test

the browser returns the error : object not found (404).

although I activated the mod_rewrite

LoadModule rewrite_module modules/mod_rewrite.so

So, how can I set the routing mechanism to reach the new controllers and their views?

Thank you very much, regards.

© Stack Overflow or respective owner

Related posts about zend

Related posts about framework