mehrere domains und subdomains

katze

New Member
zurzeit habe ich diesen script als "urlredirect"
je nach domain wird eine andere startseite angetzeigt.
PHP:
<%@ Language=VBScript %>
<%
' Set up your variables
Dim sURL
' Get the domain name typed in the browser.
sURL = Request.ServerVariables("HTTP_HOST")
' Do the redirecting stuff
Select Case sURL
    Case "www.domaina.ch"
        Response.Redirect "http://" & sURL & "/domaina.htm"
    Case else
        Response.Redirect "http://" & sURL & "/domainb.htm"
End Select
%>
==
Nun möchte ich dies machen. Geht dies so mit dem Script?
mehrere Domains und Subdomains.
PHP:
<%@ Language=VBScript %>
<%
' Set up your variables
Dim sURL
' Get the domain name typed in the browser.
sURL = Request.ServerVariables("HTTP_HOST")
' Do the redirecting stuff
Select Case sURL
    Case "www.domaina.ch"
        Response.Redirect "http://" & sURL & "/domaina.htm"
    Case "sub1.domaina.ch"
        Response.Redirect "http://" & sURL & "/domainasub1.htm"
    Case "sub2.domaina.ch"
        Response.Redirect "http://" & sURL & "/domainasub2.htm"
    Case else
        Response.Redirect "http://" & sURL & "/domainb.htm"
End Select
%>
 
Last edited by a moderator:
Back
Top