I want to use the location and convert a URL to GET parameters in my server. I don't care if it is one, two or more params in the URL but it would be something like this, if I go to this URL
https://www.example.com/page/one/two/three/ ....
it should send me to this
https://www.example.com/page/index.php?site=one&id=two&args=three ....
I set up my code to get up to the first parameter in the URL but I cannot break it down further, it will always return everything after page/
together in one paramemter
location ~ ^/page/(.*)$ {
try_files $uri /page/index.php?site=$1
}
any suggestions?