PHP implements http and https conversion

Source: Internet
Author: User
Recently, when writing a PHP program, you need to convert the browser between https and http and search for relevant information online. However, when writing a PHP program recently, to enable the browser to convert between https and http and search for relevant information on the Internet, there is only one article about ASP implementation between http and https... syntaxHighlighter. all

 

Recently, when writing a PHP program, you need to convert the browser between https and http and search for relevant information online. However, when writing a PHP program recently, to enable the browser to convert between https and http and search for relevant information on the Internet, there is only one article about how to use ASP to implement "conversion between http and https, so I had to write the code for converting http and https using PHP.

If the webpage is accessed over https, add the following code at the beginning of the webpage:

View plainprint?

// Convert http to https

If ($ _ SERVER ["HTTPS"] <> "on ")

{

$ Xredir = "https: //". $ _ SERVER ["SERVER_NAME"].

$ _ SERVER ["REQUEST_URI"];

Header ("Location:". $ xredir );

}

?>

 

If the webpage is accessed through http, add the following code at the beginning of the webpage:

View plainprint?

// Convert https to http

If ($ _ SERVER ["HTTPS"] = "on ")

{

$ Xredir = "http: //". $ _ SERVER ["SERVER_NAME"].

$ _ SERVER ["REQUEST_URI"];

Header ("Location:". $ xredir );

}

?>

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.