Cita:
Iniciado por pablisho 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
%>