我目前正在使用 index.php 来包含另一个文件,它的结构如下:
root / index.php
/ new/ index.php
/ img/ test.jpg
我在 root/index.php 中写了以下内容:
<?php
require_once("new/index.php");
?>
问题是,其中的所有路径都是错误的。因为所有路径都基于 new/index.php。
例如,在 new/index.php 我的 test.jpg 就像
<img src="img/test.jpg" />
它显示http://www.test.com/new/img/test.jpg
当我直接访问 new/index.php
但它显示http://www.test.com/img/test.jpg
当我在 index.php 中包含 php 时。
如何解决?我试过 chdir() 但它不起作用期待谢谢