我剛開始嘗試使用無脂框架。我不明白我在這裏做錯了什麼。我有以下的代碼,我從他們的網站有:僅通過cli工作的無脂框架
$f3 = require('/var/tmp/fatfree-master/lib/base.php');
$f3->route('GET /',
function() {
echo 'Hello, world!';
}
);
$f3->run();
?>
當我使用CLI,像這樣的PHP的index.php它工作正常運行下面的代碼。但是當我嘗試去把它與一個瀏覽器,我收到以下錯誤:
Not Found
HTTP 404 (GET /index.php)
我不明白它是如何工作通過CLI命令行,而不是通過瀏覽器。任何人都遇到過這個?
是'你的文檔根index.php'? – Phil
你有沒有設置htaccess和重寫規則? https://github.com/bcosca/fatfree#sample-apache-configuration ..看起來像它默認嘗試找到該目錄的索引文件(index.php) – Ben