My URL is:
https://hostname/page.php/maximum/2000/minimum/200
In page.php file I use:
$parameter_array = explode('/',$_SERVER['REQUEST_URI']);
I use this $parameter_array to filter a table. So, it is working fine. But the URL is not looking good. I need:
https://hostname/page/maximum/2000/minimum/200
To work like
https://hostname/page.php/maximum/2000/minimum/200
Is there any way to do it without using htaccess file?
N.B: I can not use .htaccess file because my client is forcing me not to use .htaccess or .config file. Will be very helpful if it is possible.