I know https is a secure site. My question is how can you have different sites with basically the same URL?
Example...
and
Any takers on this one?
Example...
and
Any takers on this one?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Request.ServerVariables("HTTPS")
<%
If Request.ServerVariables("HTTPS") <> "ON" Then
Response.Redirect("[URL unfurl="true"]https://"[/URL] & Request.Servervariables("PATH_INFO"))
End If
%>