Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/08/2011, 11:34
Avatar de hunagiator
hunagiator
 
Fecha de Ingreso: mayo-2004
Mensajes: 28
Antigüedad: 20 años
Puntos: 0
Respuesta: problema .htaccess

Cita:
Iniciado por tonydx16 Ver Mensaje
algo estoy haciendo mal?

la url es así

u/ es carpeta..

http://....../u/c/
http://....../u/c/texto

lo que quiero es que se muestre

http://....../u/c/

y tambien

http://....../u/c/texto


Código Apache:
Ver original
  1. RewriteEngine On
  2.  
  3. RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?s=$1
  4. RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?s=$1
  5. RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?s=$1/$2
  6. RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?s=$1/$2
Prueba asi

Código Apache:
Ver original
  1. RewriteEngine On
  2.  
  3. RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?s=$1/$2
  4. RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?s=$1
  5. RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?s=$1/$2
  6. RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?s=$1