Tengo un problema con el .htaccess y debo cambiarlo para que las url las tome como directorios o no se que rollo xD, resumiento para que:
siouxlive.es/soluciones.php pueda funcionar en siouxlive.es/soluciones/
Mi .htaccess está actualmente así:
Código:
¿Alguien puede orientarme...? GRACIAS!! RewriteEngine On RewriteCond %{REQUEST_URI} !^/~siouxlive/siouxlive.es(.*) [NC] RewriteRule ^(.*)$ /~siouxlive/siouxlive.es/$1 Options +Indexes Options +FollowSymlinks # new scheme RewriteRule ^([0-9]+)/[^/]+/([0-9]+)/$ /show_cat.php?cat_id=$1&page=$2 [L,NC] RewriteRule ^([0-9]+)/.*$ /show_cat.php?cat_id=$1 [L,NC] # original scheme RewriteRule ^cat/([0-9]+)/page/([0-9]+)/$ /show_cat.php?cat_id=$1&page=$2 [L,NC] RewriteRule ^cat/([0-9]+)/$ /show_cat.php?cat_id=$1 [L,NC]