Tengo estas líneas:
Código:
El problema es que cuando paso una url tipo: "http://www.dominio.com/secc/detail/" sólamente recibo la variable "detalle".RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/ index.php?seccion=$1 RewriteRule ^(.*)/(.*)/ index.php?seccion=$1&detalle=$2
¿Qué estoy haciendo mal?