Use nginx to convert a URL with parameters to pretty links, but at the same time allow PHP to access the parameters
I have an index.php file inside a directory on my server running nginx. It does some currency conversion calculations. I need to be able to send a GET request to this file that includes 5 URL parameters. Example: https://example.com/conversion/index.php?countryfrom=US-United+States&countryto=IN-India&amount=123&amount_type=USD&recv_amount=INR But…