Code Snippet

Home » Code Snippets » JavaScript » Redirect to SSL

Redirect to SSL

window.location = "https://" + window.location.hostname + window.location.pathname + window.location.search;

You might wanna test if window.location.href doesn't start with "https" before doing that, so you don't redirect unless you have to.

Subscribe to The Thread

  1. Why would use JS instead of PHP? Or .htaccess?

    • Maybe you’d like it to be triggered by a user event, there’s never only 1 right way to do something

  2. This is what I was using before, although Chris’s way is far better

    window.location = window.location.href.substr(0,4) + “s” + window.location.href.substr(4,250);

  3. Don’t forget about location.hash!

  4. You also can use

    window.location.protocol = "https:"
  5. TeMc
    
    var addy = window.location.href;
    if (addy.indexOf('http:') === 0) {
        window.location.href = addy.replace(/^http/, 'https')
    }
    

Speak, my friend

At this moment, you have an awesome opportunity* to be the person your mother always wanted you to be: kind, helpful, and smart. Do that, and we'll give you a big ol' gold star for the day (literally).

Posting tips:
  • You can use basic HTML
  • When posting code, please turn all
    < characters into &lt;
  • If the code is multi-line, use
    <pre><code></code></pre>
Thank you,
~ The Management ~