JavaScript Implementation Force redirection to HTTPS page _javascript tips

Source: Internet
Author: User

Sometimes you need to force the page to switch to HTTPS, even if the user has already accessed the HTTP version. The reason may be that you do not want the user to use HTTP for access because it is not secure. To do this is very simple, if you do not want to use PHP or Apache mod_rewrite to do this thing, with JavaScript can also. The code is as follows:

<script type= "Text/javascript" >
var targetprotocol = "https:";
if (Window.location.protocol!= targetprotocol)
 window.location.href = Targetprotocol +
  Window.location.href.substring (window.location.protocol.length);
</script>

With this code, if a user accesses a http://leonax.net/..., it is redirected to https://leonax.net/... If you want to, in turn, Force HTTPS redirection to HTTP, change the value of Targetprotocol to HTTP. Is it convenient?

Related Article

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.