Zend框架应用程序与静态html指向域根


Zend Framework App with static html pointed to domain root

这里有一个Zend新手。请帮助。

我们已经部署了一堆静态html页面(在var/www/html),然后一个ZF应用程序到我们的服务器。我们希望www.ourdomain.com指向index.html(静态html),而不是重定向到我们的ZF应用程序(index.php)。只有当我们显式调用www.ourdomain.com/login时,才应该调用ZF应用程序。现在,www.ourdomain.com只是重定向到我们的ZF应用程序!

您必须配置apache使用index.html作为目录索引:

DirectoryIndex index.html

(可以在/var/www/html的。htaccess中添加)