我在我的项目中使用Slim Framework 3。该应用程序有两(2)个端点/numbers
和/
,并且在本地计算机上运行应用程序时都可以访问它们。问题是/numbers
在数字海洋上的远程/托管服务器上返回404
。没有意义的是/
仍然可以正常工作。远程服务器正在Ubuntu 16.04 x64
上运行,我在两台服务器上都使用PHP 7
。我已经在服务器上上传了文件的屏幕截图,这些文件与本地计算机上的文件完全相同
$app->get('/', function($request, $response, $args){
$payload = ['1'=>'root', '2'=>'admin'];
return $response->withStatus(200)->withJson($payload);
});
$app->get('/numbers', function($request, $response, $args){
$payload = ['1'=>'One', '2'=>'Two'];
return $response->withStatus(200)->withJson($payload);
});