I'm having URLs like:
index.php?q=123&w=456&e=789
and I need to rewrite them in something like:
index/123/456/789
without using "if".
So far I've tried:
location / {
rewrite ^/index.php\?q=(.*)&w=(.*)&e=(.*)$ /index/$1/$2/$3;
}
But it doesn't work. Any ideas?