> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# 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:

```html
location /api/ { 
    try_files $uri $uri/ /api/index.php?$query_string; 
}
```