douzi9211 2017-10-16 06:31
浏览 77
已采纳

在Heroku上托管的PHP应用程序的一些图像没有被加载

I am using Github as SCM & have enable auto-deploy on Heroku. I am trying Heroku for a simple HTML, CSS, JS app & Used PHP for deployment. All my images are available in Git, relative path given for images is also correct. Still some of the images are not reflecting on page & giving 404 whereas most of them do appear. What can be it's reason?

Here's code snippet

.bgimg1 {
            background-image: url('images/Top_Image.jpg');
        }
<body class="background">
    <div class="loader"></div>
    <div class=" bgimg1">My top content </div>

<div class="carousel-inner" role="listbox">
                <div class="item active">
                    <img src="images/1.jpg" alt="img" height="50%" width="100%">
                </div>
                <div class="item">
                    <img src="images/2.jpg" alt="img" height="50%" width="100%">
                </div> 
            </div>
</body>

and here is project structure. enter image description here

</div>
  • 写回答

1条回答 默认 最新

  • dongye8110 2017-10-16 07:22
    关注

    Make sure you reference the correct images, watch out for lower/upper case: You are referencing *.jpg (lower case) in your html when the filenames really are .JPG (upper case).

    Corrected code:

    .bgimg1 {
      background-image: url('images/Top_Image.JPG');
    }
    
    <body class="background">
      <div class="loader"></div>
      <div class=" bgimg1">My top content </div>
      <div class="carousel-inner" role="listbox">
        <div class="item active">
          <img src="images/1.JPG" alt="img" height="50%" width="100%">
        </div>
        <div class="item">
          <img src="images/2.jpg" alt="img" height="50%" width="100%">
        </div> 
      </div>
    </body>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里