By default my script is accessible by using this url http://localhost/myscript/public/.
But i need to access it by this url http://localhost/myscript/.
How can i do this in Zend Framework.
By default my script is accessible by using this url http://localhost/myscript/public/ . But i
Share
just put all files from the public folder into the root folder.
then open the index.php or bootstrap.php, where ever you have this code
and change it to this one
but check other pathes too, like this one.
require_once ‘Zend/Controller/Front.php’;
Got this tutorial from this page 🙂
http://www.fincha.com/blog/2010/tutorial-zf-public-verzeichnis-umgehen-nicht-verwenden/
Its in German…