How can I use user-friendly URLs? form - > submit
I already have the friendly URLs made in the .htaccess, they work!
But pressing the SUBMIT button takes me to the normal URL (GET)
http://www.mi.web/stats.php?Jugador=Abcedario
But when putting the direct URL if it works
http://www.mi.web/players/Abcedario
I would like to know how I can do to reedit the SUBMIT to the friendly URL
FORM
<form method="get" action="stats.php">
<label>Jugador: </label><input type="text" name="Jugador"><br>
<input type="submit" value="Buscar">
.HTACCESS
RewriteEngine on
RewriteRule ^players/(\w+)$ stats.php?Jugador=$1