douzhi3586 2018-10-04 20:57
浏览 56
已采纳

Laravel在根文件夹外显示图像

I am running a Laravel website on local machine. my laravel is in folder: /Username/bigproject/laravel-project

In the views of my Laravel app there are tags which should show files from /Username/bigproject/images folder (so it's outiside laravel root folder). How can I form the url in the src so this images are displayed?

<img src="/Username/bigproject/images/image1.jpg"> doesn't work, of course.

I've played with disks storages from https://laravel.com/docs/5.4/filesystem but had no results.

PS. This project is actually for local use only.

  • 写回答

3条回答 默认 最新

  • dsd30433 2018-10-04 22:45
    关注

    As the web server cant access files out side of its root, you can create a symbolic link so the files can be in two locations at once.

    ln -s /Username/bigproject/images /Username/bigproject/larave-project/public 
    

    thus allowing the web-server (ultimately the browser) to use the access the files with <img src="/catPic.jpg">

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数