0
を働いていない私はslimphpルータと少し問題があります。GET
1/API /ライブラリ/ブック/に送信Slimphp 3ネストされたグループは
$app->group('/api', function() use ($app) {
// Library group
$this->group('/library', function() use ($app) {
// Get book with ID
$this->get('/books/:id', function ($req, $res) {
echo "books";
});
// Update book with ID
$this->put('/books/:id', function ($req, $res) {
});
// Delete book with ID
$this->delete('/books/:id', function ($req, $res) {
});
});
});
を私に問題があるPage not found
エラーを与えます。
EDIT:
の.htaccess
RewriteEngine On
# Some hosts may require you to use the `RewriteBase` directive.
# If you need to use the `RewriteBase` directive, it should be the
# absolute physical path to the directory that contains this htaccess file.
#
# RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [QSA,L]
PS:シンプルapp->get
は
で発見
だろうあなたはスリム2またはスリム3を使用していますか?あなたはそれぞれからコードを混ぜているようです。 – meun5
私はスリム3を使用しています – karim
あなたのウェブサーバーの設定(つまり.htaccess)を追加できますか? – meun5