Please help
How redirect HTTP root and index.php to HTTPS root. Styles and Scripts are on par with index.php.
RewriteEngine On
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Thanks!