我将Laravel 5项目部署到共享主机帐户,将应用程序文件放在www文件夹之外,只将公共文件夹放在www文件夹中.所有这些都在这里解释,在最佳答案:Laravel 4 and the way to deploy app using FTP …没有3.因为Laravel 5中不存在此文件.
现在,当我在控制器内部调用public_path()时,我得到的东西就像my-appfiles-outside-of-www / public而不是www / public.有谁知道为什么我没有在这里找到正确的道路?我可以在某处更改吗?
谢谢!
解决方法:
您可以使用容器覆盖public_path.
例:
App::bind('path.public', function() {
return base_path().'/public_html';
});