Bd API: API jest nie dostpne.
Pradwdopodobnie: wymagane RewriteBase, wyczye "mod_rewrite" w serwerze Apache lub .htaccess.

To add the RewriteBase path, open a file api/v1/.htaccess and change the following line:
# RewriteBase /
To
RewriteBase /api/v1/

To enable .htaccess support add/edit the Server configuration settings inside your <VirtualHost> section (httpd.conf):
<Directory /PATH_TO_ESPO/>
 AllowOverride All
</Directory>

W pliku: /etc/apache2/apache2.conf
Pod "ErrorLog ${APACHE_LOG_DIR}/error.log":
# Include the virtual host configurations:
Include sites-enabled/
<Directory /var/www/>
 AllowOverride All
</Directory>

Afterwards run this command in a Terminal:
service apache2 restart

To enable "mod_rewrite" run those commands in a Terminal:
a2enmod rewrite 
service apache2 restart

Open the file "api/v1/.htaccess" and replace this line:
Code:
RewriteRule ^ index.php [QSA,L]
to
Code:
RewriteRule ^ /api/v1/index.php [QSA,L]


service apache2 restart