在我的Laravel 5.1代码中,我使用以下路径创建了名为SampleApplication的Project ...
C:\xampp\htdocs\SampleApplication\
成功注册后,正在创建目录。
C:\xampp\htdocs\SampleApplication\Users
C:\xampp\htdocs\SampleApplication\Users\{UserName}
C:\xampp\htdocs\SampleApplication\Users\{UserName}\Profile
C:\xampp\htdocs\SampleApplication\Users\{UserName}\Profile\User.png
到目前为止一切正常。
在仪表板页面中,我试图显示如下图像。
<img src="{{url('/Users/' . auth()->user()->UserName . '/Profile/' .
auth()->user()->UserImage)}}" alt="..." class="img-circle profile_img">
这会产生以下路径。
http://localhost/SampleApplication/public/Users/UserName/Profile/user.png
这为上图提供了404错误。
我错过了什么吗?
答案 0 :(得分:0)
是Laravel url默认为public /,因此对于Laravel 5或5.1,将Laravel根文件夹中的server.php重命名为index.php,并将.htaccess文件从/ public目录复制到Laravel根文件夹。
试一试,它应该有用!!