我一直在尝试使用Restler php api。
我的网络服务器根目录中有一个 api.php 文件:
<?php
require_once('lib/restler.php');
class Say {
function hello($to='world') {
return "Hello $to!";
}
}
$r = new Restler();
$r->addAPIClass('Say');
$r->handle();
?>
我尝试使用最简单的示例 GET api.php/say/hello,但 nginx 一直以错误 404 响应我。在日志中我看到“不是目录”。
我想这是我的 nginx conf 的问题,但找不到任何关于它的具体信息。任何的想法?