I have this url on my site
categorias.php?id_categoria=1
I want to make a rule to stay
produtos/nome-categoria
Being the category name I'm already pulling the bank with php
My .htacsess is like this with a rule already made for the home page
<IfModule mod_rewrite.c>
RewriteEngine On
#aqui criamos uma condição para que os arquivos sejam ignorados nas regras abaixo
RewriteCond %{REQUEST_FILENAME} !-f
#aqui criamos uma condição para que diretórios sejam ignorados nas regras abaixo
RewriteCond %{REQUEST_FILENAME} !-d
#aqui definimos onde começa a base das regras
#fix rules
RewriteRule ^pagina-inicial/?$ index.php [NC,L]
</IfModule>