Last Updated: February 25, 2016
·
2.086K
· jesseobrien

Nginx PHP Query Strings

Query strings aren't on by default when using Nginx and PHP-FPM. You have to include the $query_string variable on the end of the try_files directive for your location.

location / {
    try_files $uri $uri/ /index.php?$query_string
}