I wanted to achieve url like this
www.abcd.com/somename
We know that the folder does not exist on the server and will throw 404 immediately
But I'm looking forward if "somename
" can be translated as
www.abcd.com?q=somename
but still showing as www.abcd.com/somename
And "somename" will be passed to get method for a PHP DB Query like this
$name = $_GET['somename'];
Thank you