@specsoftdev live:.cid.8e17e9b93cabb607 specsoftdev@gmail.com

How to redirect from HTTP to HTTPS in Apache 2

To do this, your virtual host file must contain the following code:
<VirtualHost *:80>
  ServerName happydapps.com
  ServerAlias www.happydapps.com

  Redirect permanent / https://happydapps.com/
</VirtualHost>

<VirtualHost *:443>
        ServerName happydapps.com
        DocumentRoot /www/path/public
        ServerAdmin webmaster@localhost


        SSLEngine on

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined


        #Include /etc/letsencrypt/options-ssl-apache.conf
        ServerAlias www.happydapps.com
        #SSLCertificateFile /happydapps.com/fullchain.pem
        #SSLCertificateKeyFile /privkey.pem
</VirtualHost>


Don't forget to reboot the web server after changing the host configuration.

You can also set up a redirect in the .htaccess file:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]