我有一个laravel应用,我的客户需要通过子文件夹(例如clientdomain.com/laravelapp/)访问它。我已经将laravel的/ public /文件夹中的内容移至/ laravelapp并设置了index.php文件,以便它引用正确的路径。
我最终得到以下结构:
- /public_html (webroot of the server)
- /myapp/ (this is the public folder that was inside the laravel project)
- /laravel-framework (this is the laravel project folder with controllers, views, vendors, etc)
当我访问主路由(clientdomain.com/laravelapp)时,它可以正常工作,它可以显示视图,图像和其他所有内容。问题是当我尝试访问其他路由时,它显示404。
我无法手动设置nginx conf文件,但是ISPConfig带有一个用于nginx指令的框。
像我的设置正确的指令是什么?
我先谢谢你。
答案 0 :(得分:0)
尝试将其添加到nginx指令的框中。
location / {
try_files $uri $uri/ /index.php?$args;
}