I followed the step by step tutorial of zend but it is not working when I try to initialize the project by netbeans.Sou new, I just started training people who can please help.
In the Apache install folder, find the file httpd.conf (or httpd-vhosts.conf on some systems) and include this block:
<VirtualHost *:80>
ServerName quickstart.local
DocumentRoot /path/to/quickstart/public
SetEnv APPLICATION_ENV "development"
<Directory /path/to/quickstart/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Then you replace the DocumentRoot path by the path to where the public folder is in your application.
Here's a great tutorial to get you started: link