Php file_get_contents 返回空结果

Php file_get_contents returning empty result

我正在尝试使用 API.

将发布的 (application/json) 数据接收到我的 Php 项目

我的 Php 项目文件位于:

v1/project/index.php

$request = file_get_contents('php://input');

当我这样使用 API url 时:

[POST] localhost/v1/project/

正在运行。但是:

[POST] localhost/v1/project

不工作。 我想分享这个 API,但在 URL 末尾没有斜线。我该如何解决?

谢谢大家,它通过 .htaccess 重定向解决了(Google:非斜线到斜线的重定向)。

<IfModule mod_rewrite.c>

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*[^/])$ // [L,R=301]

</IfModule>