I have make one site using Zend Framework.
Its working fine in development server but not working in Live server.
I am getting error “The requested URL /public/default was not found on this server.”
Index page is running fine.
For example :
http://www.xyz.com/public (Its working fine)
But
When I am trying to run http://www.xyz.com/public/default or http://www.xyz.com/public/admin.
I am getting the error “The requested URL /public/default was not found on this server.”
Thanks in advance.
Kanji
I found the solution.
go to your Apache configuration file (httpd.conf, /etc/apache2/sites-availble/site.conf, or /usr/local/zend/apache2/conf/extra/httpd-vhosts.conf, etc.) and locate the … tag which controls the virtual server for this site.
Make sure you have set:
AllowOveride All
Restarted Apache.