如何设置 PHP 脚本来接收对目录中不存在的目录的请求?

How to set up PHP script to receive requests to non-existent directories in a directory?

说,如果我在服务器的根目录中有一个 dir 目录,里面有 index.php 文件,我可以设置那个 index.php 来调用任何以下链接:

https://example.com/dir/
https://example.com/dir/something
https://example.com/dir/something_else

抱歉,我不确定如何调用它,但基本上 URL 的最后一段被传递到 example.com/dir/ 中的 index.php 脚本中。

PS。我的网站托管在共享网络托管平台上。

您可以通过创建 .htaccess 文件并放入以下内容来利用 FallbackResource,而不是在每个文件夹中都有一个 index.php:

FallbackResource /index.php

然后,您可以解析 $_SERVER['REQUEST_URI'],并用它做任何您想做的事情。