Zend Framework App 的静态 html 指向域根目录
这里是 Zend 新手。请帮忙。
我们已经部署了一堆静态 html 页面(在 var/www/html
中),然后在我们的服务器上部署了一个 ZF 应用程序。我们希望 www.ourdomain.com
指向 index.html
(静态 html),而不是重定向到我们的 ZF 应用程序 (index.php
)。仅当我们显式调用 www.ourdomain.com/login
时,才应调用 ZF 应用程序。现在,www.ourdomain.com
只是重定向到我们的 ZF 应用程序!
能否请您指教!
A Zend newbie here. Please help.
We've deployed a bunch of static html pages (in var/www/html
) and then a ZF app to our server. We want www.ourdomain.com
to point to the index.html
(static html) and not redirect to our ZF app (index.php
). Only when we explicitly call www.ourdomain.com/login
should the ZF app be invoked. Right now, www.ourdomain.com
just redirects to our ZF app !.
Can you please advise !.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须配置 apache 以使用 index.html 作为目录索引:(
您可以将其添加到 /var/www/html 中的 .htaccess 中)
You have to configure apache to use index.html as directory index:
(You can add this in a .htaccess in /var/www/html)