%@ Language=VBScript %> <% response.buffer = True %> <% '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' ~~~~~~~~~~ '~ Script: | Domain Redirect '~ Language: | ASP/VBScript '~ Version: | 1.0 '~ By: | Darryl A. Brown '~ Contact: | Brown@LunarTech.com '~ Copyright: | Darryl A. Brown '~ Released: | April 12, 2000 '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' ~~~~~~~~~~ '~ By using this software, you have agre ' ed to the license '~ agreement packaged with this program. ' This script is '~ provided without warranty. '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' ~~~~~~~~~~ 'Set up the redirect variables Dim strURL 'This is the URL the user typed into the browser Dim strSiteName 'This is the domain name Dim intEPos 'This is the position of the remaining dot strURL = Request.servervariables("HTTP_HOST") intURLLen = len(strURL) if inStr(1, UCase(strURL), "WWW") > 0 Then strURL = Right(strURL, (intURLLen - 4)) End if intEPos = inStr(1, strURL, ".") strSiteName = UCase(Mid(strURL, 1, (intEPos - 1))) 'Insert your site names in the Select Ca ' se statement below to 'replace the Your-Site, Your-Next-Site & ' Default-Site text. 'Feel free to add to the select case for ' additional sites. Select Case strSiteName Case "may-baker.com" Response.redirect "http://www.may-baker.com/index.asp" Case "mimeenoodles.com/index.asp" Response.redirect "http://www.may-baker.com/mimeeweb/intro.htm" Case Else Response.redirect "http://www.may-baker.com/index.html" End Select %>