我有这样的 index.php 的网址
http://localhost/exercise/
当我打电话
return var_dump(
trim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '/')
);
我exercise
在 xampp 的 htdocs 中有项目文件夹。
http://localhost/exercise/sd/ds
在我得到的网址上exercise/sd/ds
如何摆脱 request_uri 中的文件夹名称?或任何其他(如果有的话)文件夹,如果这个 php 脚本嵌套在许多文件夹中。
如何从脚本所在的这一点开始获取 Request_URI?