Symfony:为什么我的主页是 example.com/web 而不是 example.com (应该是?)

发布于 2024-12-03 23:59:16 字数 261 浏览 1 评论 0原文

我的目录树看起来像这样:

public_html
  example.com(containing symfony files)
    lib
    web
    app 
    etc...
  example.net
  example1.com
  example1.net

当我通过 example.com 访问我的网站时,它只显示文件夹 example.com 下的目录树,而不是路由到我的实际主页。我该如何解决这个问题?

My directory tree looks something like this:

public_html
  example.com(containing symfony files)
    lib
    web
    app 
    etc...
  example.net
  example1.com
  example1.net

When I access my site via example.com it just shows my directory tree under the folder example.com, instead of routing to my actual homepage. How do I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

巷子口的你 2024-12-10 23:59:16

您应该将所有文件(web 目录除外)放置在 web 目录正上方的目录中。
然后创建一个指向您的 web 目录的符号链接 public_html,或者将文件添加到您的 public_html 中,然后添加到您的 ProjectConfiguration 中> 调用 $this->setWebDir(realpath('../public_html'));

You should place all files (except the web directory) in the directory directly above the web directory.
Then create a symlink public_html to your web directory, or add the files to your public_html, and then in your ProjectConfiguration call $this->setWebDir(realpath('../public_html'));

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