Hello, I'm having difficulty setting my htaccess file, I have a fixed parameter that I manually pass and one that depends on the user when I click and change uf, follow the example
RewriteRule ^representantes\/(.*)$ representantes.php?i_page=3&uf=$1
The UF parameter would depend on the user when they click on a link and change the state (uf) the i_page would be fixed. The URL would look like this:
UPDATE
I tried something like
RewriteRule ^representantes?uf=(.*)$ representantes.php?i_page=3&uf=$1
I have not yet had the expected result.