Forcing the use of HTTPS:// on your site will ensure that visitors to your site are always using
https://softengine.sk and aren't able to access an insecure
http://softengine.sk URL. This is recommended since if a visitor does access your
site as http://softengine.sk everything will be marked as "Not Secure".
Below code is for forcing HTTPs on an Apache webserver. If you are using another webserver such
as lighttpd, nginx, etc you will need to contact your web hosting provider for assistance.
Add the following code to the .htaccess file in your webhosting account:
RewriteEngine On
RewriteCond %{HTTP_HOST} softengine\.sk [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://softengine.sk/$1 [R,L]
Once this change is made your site will no longer be accessible on the insecure
"http://softengine.sk" URLs and all visitors will be redirected to
"https://softengine.sk" instead.