Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/07/2007, 08:32
Jhon Silver
 
Fecha de Ingreso: marzo-2004
Ubicación: Madrid (España)
Mensajes: 837
Antigüedad: 20 años, 10 meses
Puntos: 9
Re: Penalizacion con redireccion de subdominio

Cita:
Iniciado por pablisho Ver Mensaje
Si exacto, mi servidor me ofrece tres subdominios. Para que estos se visualicen tengo que redireccionar el subdominio al subdirectorio a traves del siguiente script en asp
colocado en la pagina del dominio principal:

<%
If InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("coches.miweb.org") ) > 0 Then
Response.Redirect("/renault")
ElseIf InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("cochessegundamano.miweb.org") ) > 0 Then
Response.Redirect("/ford")
ElseIf InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("cochesnuevos.miweb.org") ) > 0 Then
Response.Redirect("Seat")
End If
%>