I would like to clear my url by using RewriteRule at .htacces.
I would like to change /product/detail.php?id=red-shirt to something like this /product/red-shirt.
I tried to use this RewriteRule ^/?product/([^/d]+)/?$ /product/detail.php?id=$1 [L,QSA] but it does not work.