Add php files to communicate with the database

All previous routes of the nodejs server are now working with php.
This commit is contained in:
dario-cfpt
2020-03-09 20:09:33 +01:00
parent abfd944bbf
commit a561ac89f3
4 changed files with 270 additions and 0 deletions

5
server/.htaccess Normal file
View File

@ -0,0 +1,5 @@
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php [QSA,L]