Buewnos días.
Con este .htaccess, con el primer rewrite todo va bien, el problema está en el wegundo que no me funciona.
La url original sería:
http://localhost/eventofacil/search/...io&n=1&s=2&t=3
Y la url convertida tendría que ser:
http://localhost/eventofacil/search/antonio-1-2-3.html
pero no funciona POR FAVOR NECESITO AYUDA, llevo tiempo inténtandolo y no lo consigo.
Gracias y un saludo
Código HTML:
Options +FollowSymLinks
RewriteEngine on
RewriteRule restaurantes/(.*)/(.*)/$ /restaurantes.php?$1=$2
RewriteRule ^([^/]+)-([^/]+)-([^/]+)-([^/]+)\.html$ /search/ballet_dance_search.php?plus=$1&n=$2&s=$3&t=$4
los parámetros se envian por Get desde este formulario:
Código HTML:
<form action="ballet_dance_search.php" method="get" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">Numero:</td>
<td><input name="plus" type="text" id="plus" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Id_rest:</td>
<td><input name="n" type="text" id="n" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Email:</td>
<td><input name="s" type="text" id="s" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Cif:</td>
<td><input name="t" type="text" id="t" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><input type="submit" value="Insertar registro" /></td>
</tr>
</table>
</form>