Forum Moderators: open
<%
if Request.ServerVariables("HTTPS") = "on" then
server = Request.ServerVariables("SERVER_NAME")
script = Request.ServerVariables("SCRIPT_NAME")
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://" & server & script
end if' Otherwise, continue with normal page operation
%>