Basically the question is how to make this url
http://domain.com/folder/cache.php?a=3a1c2aa4d440d3d8ce4207b07488ae4d?g=67h
to look like this
http://domain.com/folder/3a1c2aa4d440d3d8ce4207b07488ae4d?g=67h
Basically the question is how to make this url
http://domain.com/folder/cache.php?a=3a1c2aa4d440d3d8ce4207b07488ae4d?g=67h
to look like this
http://domain.com/folder/3a1c2aa4d440d3d8ce4207b07488ae4d?g=67h
This worked
rewrite ^/folder/(.*)$ /folder/cache.php?a=$1?$args? last;