是否可以将图像保存在laravel 4中的'public'文件夹之外?我试图更改目录路径,而不是公共文件夹,照片保存到我创建的目录路径,但它没有显示在我的视图上。希望有人会帮忙。如何查看公用文件夹外的图像?
这是公用文件夹中的工作代码。
<img src="{{app('customURL')}}userImage/{{$userDP}}"
class="img-rounded img-responsive center-block
profilethumb profilethumbborder " />
这是我公共文件夹外的代码。
<img src="{{app('customURL')}}C:\Users\cm-cmp102
\Desktop\Images/{{$userDP}}" class="img-rounded
img-responsive center-block profilethumb profilethumbborder " />
答案 0 :(得分:0)
可以这样做,但在这种情况下,您必须以编程方式提供图像,因为没有直接访问Apache可以为您服务的位置。
在这种情况下,您需要创建另一个控制器,使其侦听图像路径,在需要时读取文件,然后手动发送文件内容作为响应。