I am developing a module using zend framework and I have created a project using zf create project command
when i try to access the url using ip/folder/control
ip/folder/control
I just add this to the top of the index.php:
$_SERVER["REQUEST_URI"] = str_replace('index.php', '', $_SERVER["REQUEST_URI"]);
which is the other method suggested by Rob Allen at Akrabat.com