Using nginx with our API
If you're using our API with nginx, you won't be able to use a .htaccess mod_rewrite, instead please use the following code in your configuration:
location /api/ {
try_files $uri $uri/ /api/index.php?$query_string;
}
Updated on: 23/02/2023
Thank you!