Symfony:为什么我的主页是 example.com/web 而不是 example.com (应该是?)
我的目录树看起来像这样:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将所有文件(
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 theweb
directory.Then create a symlink
public_html
to yourweb
directory, or add the files to yourpublic_html
, and then in yourProjectConfiguration
call$this->setWebDir(realpath('../public_html'));