Basically, I am building a profile page in that I am passing a particular user value from DB to the page using the get method. It looks like www.example.net/index.php?user=xyz. It will take the XYZ value from DB and display the relevant data in index.php
Now all I want to achieve is a clean URL something like www.example.net/xyz.
Is there any way we can send the get value directly without mentioning the get username, question mark & equals in the URL (www.example.net/xyz)
Thanks