Ver Mensaje Individual
  #6 (permalink)  
Antiguo 12/03/2010, 08:42
fernandozunni
 
Fecha de Ingreso: febrero-2009
Mensajes: 218
Antigüedad: 15 años, 2 meses
Puntos: 9
Respuesta: Modrewrite básico?

Que tal, como sería en un sitio modular agregar una eventual variable mas cuando hay paginación.
Código PHP:
RewriteEngine On
RewriteCond 
%{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule 
^(.*)$ index.php?modulo=$[L,QSA]  #asi funciona perfecto

RewriteRule ^(.*)/(.*)$ index.php?modulo=$1&cur=$[L,QSA]   #cuando agrego paginacion se tranca todo, no anda 
Si me pueden ayudar les agradezco.