2
I ever noticed that it was possible to turn a query string into something more readable for the user, like this:
real url:
site.com/roupas?categoria=vestidos
for this (what the user sees)
site.com/roupas/vestidos ou site.com/roupas/categoria/vestidos
I also know that the way is through htaccess and have to understand REGEXR to do something +- like this, but I need a foothold to understand how to do this process, if possible turn legible the URL below just for example:
site.com/roupas?categoria=vestidos
And another,.. With this transformation, it won’t get in the way anytime I want to take the parameter for GET right? I mean, it’s just the visual part that changes and the functional part doesn’t?..