サブディレクトリ「img」に画像を表示するhtmlファイルimages.htmlがあります。サブディレクトリ内の画像にアクセスするために相対パスを使用します。
私のindex.phpですべてがうまくいかない:
require_once("dir1/dir2/images.html");
これで、相対パスはdir1 / dir2 / images.htmlではなくindex.phpを基準にしており、画像が表示されません。インクルードされたファイルimages.htmlを基準にしたパスを作成する方法はありますか?
ディレクトリ構造
index.php
dir1
dir2
images.html
img
flower.png
index.php
<?php require_once("dir1/dir2/images.html"); ?>
images.html
<img src="img/flower.png" />