I have maybe simple question. I want to redirect redirect this myBB's page:
/misc.php?action=help&hid=10
To this one:
/document.html
I tried this in nginx's vhost config:
location /misc.php?action=help&hid=10 { return 301 /document.html; }
But it didn't work...