Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/04/2008, 22:14
Avatar de j_aroche
j_aroche
Server Ninja
 
Fecha de Ingreso: agosto-2006
Ubicación: iPhone: 14.624481,-90.487457
Mensajes: 2.066
Antigüedad: 18 años, 4 meses
Puntos: 223
Re: .htaccess y multiples mod_rewrite

Prueba con agregando un RewriteCond que compare el dominio antes de hacer el RewriteRule:


Código:
#supongase sitio1
Options FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^sitio1.com 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/$ index.php?a=$1&b=$2&c=$3&d=$4&e=$5&f=$6& [L,NC]

#supongase sitio2
Options FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^sitio2.com 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/([^/]+)/$ index.php?a=$1&b=$2& [L,NC]
__________________
Blog: JavierAroche.com - Twitter: @j_aroche