Now available via https!

Posted on

I’ve bought a SSL certificate so from now on you can connect to my website via https://. The provider of the certificate is alphassl.com and the setup was really fast. On my host cyon.ch I could just send them the certificate and they setup their server to work with it. (https://www.cyon.ch/support/a/127/bietet-cyon-ssl-zertifikate-an)

To redirect all requests to https I’ve used the following snippet from article from the cyon helpdesk. (https://www.cyon.ch/support/a/243/wie-kann-ich-besucher-meiner-website-auf-ssl-und-https-umleiten)

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [QSA,L,R=301]

Leave a Reply