目录结构:
主目录结构
home.php thankyou.php
Php目录结构
root directory/php/date.php
包含目录结构
root directory/include/header.php root directory/include/footer.php
图像目录结构
root directory/images/logo.png
root directory/images/abc.jpg
对于date.php,我想使用header和footer.php文件。但图像未显示。 我写下面的代码
<?php require_once '../include/header.php';?>
但是当我用于家庭和thankyou.php时,它工作正常。
在头文件中,图像代码
<a href="index.php"><img src="images/logo.png" alt="Logo" class="image"></a>
我不想更改date.php的目录。图片not interested to absolute path
。
如何在两个目录()
中看到图像答案 0 :(得分:0)
我使用了基础html标签,因为doubleui在头部告诉我
<head>
<base href="root directory/images/" target="_blank">
</head>