我已经使用SlimFramework创建了一个REST-API,它存放在我PC上的XAMPP本地。它在我的电脑上工作得很完美但是当我想把它放在我的“Live System”Synology NAS(Synology DS216 + II)上时,它总是给我一个错误404,我不知道为什么。
在我的Synology NAS(Synology DS216 + II)上运行Apache Server(版本2.2) 由于我知道我的API无法在Synology上运行,我试图在https://www.slimframework.com/实施“演示”示例 代码:
<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
require '../vendor/autoload.php';
$app = new \Slim\App;
$app->get('/hello', function (Request $request, Response $response) {
//$name = $request->getAttribute('name');
$response->getBody()->write("Hello, test");
return $response;
});
$app->run();
This happens when i want to call this code on my synology
This happens when i want to call this code on my PC (XAMPP)
但为什么我的Synology会出现此错误?
我会对一些帮助感到高兴