我正在尝试在 PHP 中创建一个简单的 REST Web 服务。我对PHP只有一个基本的了解,但是从我目前阅读的文档来看,有一部分是我不明白的
假设我在以下链接上有一个 Web 服务 (GET)
/myServer/user --> list all users /myServer/user/John --> lists John's info /myServer/projects --> lists projects
我应该如何设置服务器上的文件来处理这个问题?输入链接http://localhost/myServer/user/
告诉我该文件不存在,所以我需要index.php
在不同的路径创建不同的文件来处理这个吗?