Slim 3 App使用现有端点返回404

时间:2017-11-11 00:08:16

标签: slim slim-3

enter image description here我在我的项目中使用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);
});

0 个答案:

没有答案