Is there a .htaccess file in the "public" folder? Zend Tool should have
created this for you. It should also contain some rewrite rules if you look
in the file. No need to modify anything there unless you need some unique
customization.
Also check Apache's httpd.conf file and ensure that AllowOverride is
enabled. you should have something similar to this:
DocumentRoot "/path/to/project/public/"
<Directory "/path/to/project/public/">
Order allow,deny
Allow from all
AllowOverride all
</Directory>
Note that the document root points to your project's "public" folder. This
means your URLs will end up looking more like this:
http://localhost/controller/action
I hope this helps!
--
*Hector Virgen*
http://www.virgentech.com
Follow me on Twitter: @djvirgen <http://twitter.com/djvirgen>