图片上传后不显示

发布于 2024-12-11 09:39:02 字数 636 浏览 0 评论 0 原文

我创建了一个网站,并使用 Xammp 在本地对其进行了测试,所有图像均已正确加载。 现在我已将所有文件移至我的主机并显示大部分图像。可能出了什么问题? 如果我手动输入路径,图像也不会显示,但它会放置在服务器上。

validator.w3.or 不会给出任何相关错误。

在此处输入图像描述

在此处输入图像描述

我使用的链接:

背景 Css:

background: url(../images/photo/achtergrond.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

I have created an website and tested it local with Xammp and all images are loaded correct.
Now I have moved all files to my host and most of the images are shown. What might be wrong?
If I enter the path manually the image also not shown but it's placed on the server.

validator.w3.or Does not give any related errors.

enter image description here

enter image description here

Link that I use: <img align="right" hspace="10" src="images/photo/watersnijden.jpg" />

Css for the background:

background: url(../images/photo/achtergrond.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如果没有你 2024-12-18 09:39:02

我的猜测是您正在使用内联图像的相对网址。

src="images/photo/watersnijden.jpg"

当您执行此操作时,浏览器会在浏览器中的当前地址+图像路径的地址中查找图像。

向所有这些 src 值添加正斜杠,假设 images 目录是根 Web 目录(httpdocs 或类似目录)的直接子目录,您可能会更幸运

My guess is that you're using relative urls for inline images.

src="images/photo/watersnijden.jpg"

When you do that, your browser looks for the image at an addreess which is the current address in the browser, + the image path.

Add a forward slash to all these src values, and you might have more luck, assuming that the images directory is a direct child of the root web directory (httpdocs or similar)

無心 2024-12-18 09:39:02

似乎有些图像已上传为 JGP 而不是 jpg。我仍然不明白为什么主机给我这个问题,而我在本地系统上没有问题。

It seems some images had been uploaded as JGP instead jpg. I still don't understand why the host gives me this problems and I have on my local system no problems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文