目录结构:
htdocs
index.php
cms.php
images/
image.jpg
otherpic.png
content/
home.php
otherfile.php
/content/home.php 包含大量图像。它将包含在 index.php 中,因此请注意 src 只有一个点,因为它是从 index.php 内部读取的:
<img src="./images/image.jpg"></img>
现在 cms.php 拥有一个 iframe。iframe 应该是富文本编辑器,以便可以编辑 home.php。
这给我带来了以下问题:当我想在 iframe 中加载 home.php 时,图像源需要有两个点,
<img src="../images/image.jpg"></img>
因为home.php
在里面/content/
所以 iframe 会看到/content/
它的父目录 Not /htdocs/
。
如何使图像显示在 iframe/文本编辑器和 index.php 中?