I need to create a friendly URL from the result of launching a select combo by URL. I currently have the following form
<form action="$path/index.php" method="GET">
<select name="filtro" onchange="this.form.submit()">
<option value="valor1">Valor</option>
<option value="valor2">Valor</option>
<option value="valor3">Valor</option>
</select>
</form>
The current result is:
www.path.com/index.php?filtro=valor1
Does anyone know what rule should I specify in .htaccess RewriteEngine on to get the next result? Thank you very much.
www.path.com/valor1