<%
dim SSL, URL, URL_PATH
SSL=Request.serverVariables("https") 'https 가 아니면 off로 뜬다.. https면 on으로 뜨겟지...
URL_PATH = "자신의사이트주소입력"
URL=Request.serverVariables("URL") '경로
if SSL="off" then 'https가 아니면 off로 뜨겟지... off로 뜨면 redirect 로 하여 페이지를 배터내라
response.redirect URL_PATH & URL
response.end
end if
%>
요로코롬 사용하고 소스 상단에 넣어주면된당~