A little trick to convert between HTTP and HTTPS

Source: Internet
Author: User
Tags servervariables
Tips In doing E-commerce sites often require browsers to convert between HTTPS and HTTP
Below I give the corresponding code:

To have an ASP page start with HTTPS, add the following code at the top of the ASP page:

<%
Response.Buffer = True
If (Request.ServerVariables ("HTTPS") = "Off") Then
Dim xredir__, xqstr__

xredir__ = "https://" & Request.ServerVariables ("SERVER_NAME") & _
Request.ServerVariables ("Script_name")
xqstr__ = Request.ServerVariables ("query_string")

If xqstr__ <> "" Then xredir__ = xredir__ & "?" & xqstr__

Response.Redirect xredir__
End If
%>

Instead, force it to start with HTTP.
Please add the following code

<%
Response.Buffer = True
If (Request.ServerVariables ("HTTPS") = "on") Then
Dim xredir__, xqstr__

xredir__ = "http://" & Request.ServerVariables ("SERVER_NAME") & _
Request.ServerVariables ("Script_name")
xqstr__ = Request.ServerVariables ("query_string")

If xqstr__ <> "" Then xredir__ = xredir__ & "?" & xqstr__

Response.Redirect xredir__
End If
%>

I wish I could be of some help to you.



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.