[Solved] Set up zend project in live server [closed]
One solution is documented in Zend Framework on a shared host Essentially, you need an index.php and a .htaccess file in the root folder as that’s where Apache is serving from. index.php: <?php define(‘RUNNING_FROM_ROOT’, true); include ‘public/index.php’; .htaccess: SetEnv APPLICATION_ENV production RewriteEngine On RewriteRule .* index.php You’ll also need to sort out the paths to … Read more