We are runnning a Wordpress web site on nginx + php-fpm7 on Ubuntu. We have problems with Unbounce plugin and their support cannot help. The plugin has a popup, which dynamically creates a page (.html) which loads inside the popup. Since this file physically doesn't exist the nginx returns a 404 (see screenshot). How can I configure the nginx to pass this request further to php-fpm?
This is my try_files directive in my nginx config:
location /
{
try_files $uri $uri/ /index.php?$args;
}
My full nginx configuration is here. Does anyone have an idea of how to achieve this?