I have create a module(person) in my Zend Project. Then created a controller(PersonController.php) in that module. Then created an action (addAction) in that controller. But when I use http://myproject.dev/person/person/add then it shows nothing.
http://myproject.dev/ points to my zendproject's public folder therefore when I use http://myproject.dev/ it shown me index page successfully. But it is not working with my modules.
I have seen somewhere that we have to configure application.ini and Bootstrap.php to tell the zend our module directory but I don't know how. What are these statements ??
My current directory is like this:
zendproject|
|-> application
|-> models
|-> modules
|-> person
|->controllers
|-> PersonController.php
