我在简洁的框架中编写了REST api。当我从浏览器调用authenticate API时,它会通过'方法不允许。必须是以下之一:POST'。以下是我的代码,请在我出错的地方纠正我。
的index.php
<?php
require 'vendor/autoload.php';
require 'Authenticate.php';
$app = new \Slim\App;
$app->post('/api/authenticate', \Authenticate::class);
$app->run();
的.htaccess
RewriteEngine On
RewriteRule ^ index.php [QSA,L]
网址
http://localhost/project/api/authenticate