我在我的网站中添加了一个维护中的页面。在那个页面中,我只放了一张图片和信息。图像位于图像文件夹内。但是当站点处于维护模式时,图像不会显示在维护页面中。如果不在维护模式下,图像会显示在该页面中。我不知道如何解决它。
在我的页面中,代码很简单,如下所示:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Under Maintenance</title>
</head>
<body style="text-align:center;vertical-align:middle;">
<div>
<img src="images/under_maintenance.gif" alt="Under Maintenance" />
<h2>This site is currently</h2>
<h1>UNDER MAINTENANCE</h1>
<h3>We will be back shortly</h3>
</div>
</body>
</html>