我想要的是能够获取特定站点的主机和子文件夹。例如:http://example:81/test/
从http://example:81/test/pagename.php
.
它还应该适用于相同的 urlhttp://example:81/test/
和多个级别的子文件夹,例如http://example:81/test/test2/somepage.php
.
它不应该在文件夹本身中获取文件的结构,例如http://example:81/test/images/page.php
应该仍然http://example:81/test/
和不应该http://example:81/test/images/
。
我尝试使用
$_SERVER['HTTP_HOST'] // only provides example:81
$_SERVER['REQUEST_URI'] // provides full path example:81/test/images/
基本上我想得到的是 index.php 文件的 url,即使它在子文件夹中。
有什么办法可以做到这一点?