도 메 인 이름 이 한 사이트 에 있 을 때 원래 도 메 인 이름 으로 돌아 가면

<%  host=lcase(request.servervariables("HTTP_HOST"))  SELECT CASE host  Just change the CASE to your domains  CASE "www.designbliss.com.au"  Below is the redirect command  response.redirect "au/"  CASE "designbliss.com.au"  response.redirect "au/"  CASE "e.free-bliss.com"  response.redirect "front.asp"  CASE "www.website-design-australia.com"  response.redirect "wda/"  CASE "website-design-australia.com"  response.redirect "wda/"  We use CASE ELSE to fix any other requests  CASE ELSE  response.redirect "front.asp"  END SELECT  %>나의 최근 응용 프로그램

<% 
host=lcase(request.servervariables("HTTP_HOST")) 
SELECT CASE host 
CASE "www.huaihaiw.com" 
response.redirect "index2.asp" 
CASE "xx.huaihai.tv" 
response.redirect "index1.asp" 
CASE ELSE 
response.redirect "index2.asp" 
END SELECT 
%> 

좋은 웹페이지 즐겨찾기