我正在尝试与将GET和POST请求发送到预设网址的API集成。网址采用给定格式:http://example.com/api/X其中X将在不同请求之间更改。
例如:http://example.com/api/status,http://example.com/api/update等......
我希望能够通过PHP接收请求并发送响应,但由于在URL的末尾没有定义文件名,我不明白该怎么做。我无法使用http://example.com/api/status/index.php,因为这会返回301响应。
我该如何处理?