0

我想知道如何使“website.com”具有一个 index.php 文件,该文件只需打开“website.com/home”但不更改 URL。我最初拥有它,因此它在“website.com/index.php”中使用了“website.com/home/index.php”的PHP包含,但是当我不得不在“website.com/home/index”中使用包含时.php”它停止工作,因为它正在运行来自“website.com/index.php”而不是“website.com/home/index.php”的包含有什么方法可以简单地发送文件“website.com/home /index.php”并让它从“website.com/home/index.php”运行而不更改 URL?我想避免使用绝对位置来简化它,因此我可以将代码复制并粘贴到其他目录中,而无需相应地对其进行编辑。

4

1 回答 1

1

使用chdir()导航到正确的文件夹,然后include("index.php");

于 2012-07-18T01:54:38.400 回答