I have a custom made php site where content loads depending on the query string. Now I want to change the total url to be like wordpress site where they don't show any query.
Example:
Current page with query: http://example.com/content.php?category=game&c=car-racing
What I want: http://example.com/game/car-racing
Is that possible?
If possible, then how do I write link href within the html code of php page? Will it be like
<a href="http://example.com/content.php?category=game&c=car-racing">Text</a>
or
<a href="http://example.com/game/car-racing">Text</a>