Zend Framework App 的静态 html 指向域根目录

发布于 2024-12-01 07:16:32 字数 353 浏览 1 评论 0原文

这里是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2024-12-08 07:16:32

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

DirectoryIndex index.html

您可以将其添加到 /var/www/html 中的 .htaccess 中)

You have to configure apache to use index.html as directory index:

DirectoryIndex index.html

(You can add this in a .htaccess in /var/www/html)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文