vb Redirect to HTTPS
If lcase(Request.ServerVariables("HTTPS")) <> "on" Then
Response.Redirect "https://" & Request.ServerVariables("SERVER_NAME") & Request.ServerVariables("SCRIPT_NAME")
Response.End
End IfUse to redirect HTTP to HTTPS.
Updated: Saturday 2nd October 2010, 06:04am
There are 0 comments
Comments are currently closed.