I have a url like:-
<a href="category.php?category=<?php echo $categry_slug ?>"></a>
I want to make it like
<a href="category.php/<?php echo $category_slug ?>"></a>
this is what i have tried
<a href="category.php/<?php echo $category_slug ?>"></a>
this is what i want
and how will retrieve the categry_slug from the url on categry page which displays the products of the category please can anyone help? The products are displayed using the get method