NextGEN Gallery slideshows with nginx
-
This has been often asked in the past, and the threads closed without a solution. So, mostly for the sake of those who might be googling for it, it seems that WordPress Answers has a solution:
https://wordpress.stackexchange.com/questions/124155/nginx-config-for-ngg-nextgen-gallery
In case that link disappears… the solution is to make sure that the try_files line is something like this:
try_files $uri $uri/ /index.php?q=$uri&$args;
In my case, because of other plugins which even require more alternative (and creative!) rewritings, I even went all the way to have:
try_files $uri $uri/ /index.php?$is_args$args /index.php?q=$uri&$args;
Radical, but it seems to do the job well.
- The topic ‘NextGEN Gallery slideshows with nginx’ is closed to new replies.