是的,所以我已经完成了我的网站,并把它放到了虚拟服务器上。除了图像之外的所有东西都能正常工在我的本地主机上,图像加载但在虚拟服务器上它们没有加载。
以下是显示图像的代码块:
@foreach($post->images()->get() as $image) <!-- loops through all the images that have the post id of this post as foreign key -->
<div class="row">
<div class="col-md-12">
<img id="event-image" style="width: 600px; height: 450px;" src="{{ asset('storage/cover_images/' . $image->cover_image) }}"> <!-- displays the image on the current loop -->
</div>
</div>
@endforeach
使用服务器时,您是否必须做一些与路径不同的事情?当我检查元素时它看起来很好。