mi problema es diferenciar las 3 condiciones. yo quiero que inteprete:
index.php?sec=$1&tipo=$2&id=$3
index.php?sec=$1&tipo=$2
index.php?sec=$1&id=$3
(sec y topi son texto e id es numerico... eso es lo que uso para diferenciar cual es cada caso)
SABEN POR QUE FALLA?????? QUE HAGO MAL????
Código:
Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_URI} ^/([a-z])$ [NC] RewriteRule ^([a-z])/?$ index.php?sec=$1[NC,L] RewriteCond %{REQUEST_URI} ^/([a-z]+)/([a-z]+/([0-9])$ [NC] RewriteRule ^([a-z]+)/([a-z]+)/([0-9])?$ index.php?sec=$1&tipo=$2&id=$3[NC,L] RewriteCond %{REQUEST_URI} ^/([a-z]+)/([a-z])$ [NC] RewriteRule ^([a-z]+)/([a-z])?$ index.php?sec=$1&tipo=$2[NC,L] RewriteCond %{REQUEST_URI} ^/([a-z]+)/([0-9])$ [NC] RewriteRule ^([a-z]+)/([0-9])?$ index.php?sec=$1&id=$2[NC,L]
MUCHAS GRACIAS DE ANTEMANO Y SUERTE PARA TODOS!!!!