it works for default URLs like
/index.php?qa=123&qa_1=why-do-birds-sing
For SEO optimized urls like this /123/why-do-birds-sing you need to set rewrite rule in nginx config
if (!-e $fastcgi_script_name) {
rewrite ^/(.+)?$ /index.php?qa-rewrite=$1 last;
}
or if your question2answer root directory is q2a
rewrite ^/q2a/(.+)?$ /q2a/index.php?qa-rewrite=$1 last;
it works fine for me