Yii2 Basic Rest Api Example
Edit the file config/db.php
with real data, for example:
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=rest-api',
'username' => 'root',
'password' => 'pwd',
'charset' => 'utf8',
];
Issue: Responds to preflight calls from browser with 404.