I have structure php url like:
example.com/category.php?cat=graphics-and-design
and I want to clean the url via a .htaccess rewrite rule to:
example.com/category/graphics-and-design
I tried the following code but still doesn't work:
RewriteRule ^([a-zA-Z0-9_-]*)\/(.*)$ category.php?cat=$1 [L,QSA]
.htaccess