I have a ChildDomain installed
SSL is installed, but HTTP to HTTPS is not redirecting.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
I have added this redirection rule, but not working
http://app.mydomain.com to https://app.mydomain.com - this is what I want.
FYI: It’s a Laravel installation.

