简体   繁体   English

<img src= url>在index.php上不显示图像

[英]<img src= url> Not showing image on index.php

I used following code on index.php and it is 100% working on localhost, but not appear image on live server "www.chitthu.co". 我在index.php上使用了以下代码,并且100%在本地主机上运行,​​但未在实时服务器“ www.chitthu.co”上显示图像。

  <div class="block">
  <img src="/img/step-1.png" style="width:20%; height:20%; margin:5px;">
    <h3>Join Chitthu</h3>
    <p>
      Signing up takes two
      minutes <br>to get a Chitthu account.
    </p>
  </div>

s tep-1 to S tep-1. s tep-1至S tep-1。

It seems that your server is case sensitive , which means S and s is very different. 您的服务器似乎case sensitive ,这意味着Ss非常不同。

Open your directory : 打开目录:

www.chitthu.co/img/

You don't have this image: 您没有此图片:

www.chitthu.co/img/step-1.png

You have: 你有:

www.chitthu.co/img/Step-1.png

Your directory: 您的目录:

在此处输入图片说明

试试这个步骤1 http://www.chitthu.co/img/Step-1.png

<img src="http://www.chitthu.co/img/Step-1.png" alt="Step-1"/>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM