• Resolved joergf

    (@joergf)


    Hi. My Hoster has set up my SSL Certificate. When i type “https://domain.com/” it shows the certificate and everything looks fine.

    but wehen i just type “domain.com” in adress bar, it does not use the ssl connection.

    how can i fix this? thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You won’t see a secure padlock or notification of you go to the standard non-secure site, so your browser is doing what it’s supposed to.

    If you want your site to be secure only then you need to set up redirects so that any non-secure page will be redirected to a secure page.

    I’ve found this after a quick search. I haven’t tested this, but it looks right.

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
    Thread Starter joergf

    (@joergf)

    Thanks, helped

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to config SSL’ is closed to new replies.