Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/04/2015, 10:46
Avatar de lauser
lauser
Moderator Unix/Linux
 
Fecha de Ingreso: julio-2013
Ubicación: Odessa (Ukrania)
Mensajes: 3.278
Antigüedad: 10 años, 9 meses
Puntos: 401
Respuesta: htaccess 2 dominios y 2 carpetas

Prueba a anular ese directorio de la orden, mas o menos sería:
Código Apache:
Ver original
  1. RewriteEngine on
  2. RewriteBase /
  3.  
  4. RewriteRule ^(CARPETAOTRAWEB)($|/) - [L]
  5.  
  6. RewriteCond %{REQUEST_URI} /+[^.]+$
  7. RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]
  8.  
  9.  
  10. # IDIOMA / SECCIONES & SUBSECCIONES
  11. RewriteRule ^([^/]+)/$                                      index.php?language=$1 [QSA]
  12. RewriteRule ^([^/]+)/([^/]+)/$                              index.php?language=$1&sectionlvl1=$2 [QSA]
  13. RewriteRule ^([^/]+)/([^/]+)/([^/]+)/$                      index.php?language=$1&sectionlvl1=$2&sectionlvl2=$3 [QSA]
  14. RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/$              index.php?language=$1&sectionlvl1=$2&sectionlvl2=$3&sectionlvl3=$4 [QSA]
  15. RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/$      index.php?language=$1&sectionlvl1=$2&sectionlvl2=$3&sectionlvl3=$4&sectionlvl4=$5 [QSA]
__________________
Los usuarios que te responden, lo hacen altruistamente y sin ánimo de lucro con el único fin de ayudarte. Se paciente y agradecido.
-SOLOLINUX-