我一直在嘗試使用Restler php api。我無法讓Restler工作
我在我的web服務器的根目錄下有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 /說/打招呼,但nginx的不斷響應我有一個錯誤404。在日誌中我看到「不是目錄」。
我想這是我的nginx conf的問題,但找不到任何關於它的具體信息。任何想法?
優秀 - 感謝您節省我的時間! – Ross 2013-04-14 23:02:54
男人,你搖滾! – 2013-10-04 14:18:57