Articles on: Troubleshooting

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

Was this article helpful?

Share your feedback

Cancel

Thank you!