Buenas
Estoy haciendo pruebas para redirigir con htacces a un fichero index.php. Tengo este código en htaccess:
RewriteEngine on
DirectoryIndex index.php
Options -Indexes
RewriteRule ^(.+)/(.+).php$ index.php?inc=$2&idioma=$1 [QSA,L]
RewriteRule ^(.+).php$ index.php?inc=$1&idioma=es_ES [QSA,L]
Y va todo bien.
El problema viene cuando en index.php tengo un formulario así
<form action="melleva.php" method="post">
<input type="text" name="lleva">
<input type="submit">
</form>
Al enviar el formulario, htaccess me redirige automáticamente a index.php y no puedo acceder a melleva.php
Cual es el metodo para hacer eso?
Muchas gracias
Un saludo