Você deseja redirecionar todas as solicitações para um front controller comum.
location / {
index index.php;
try_files $uri $uri/ @handler; ## If missing pass the URI to front handler
}
location @handler {
rewrite / /index.php;
# Rewrite for @ErJab:
# rewrite ^/myapp/(.*)$ /myapp/index\.php?q=$1 last;
}
location ~ .php$ { ## Execute PHP scripts
fastcgi_pass 127.0.0.1:9000;
}