Hello team, I request your extensive knowledge since my server is not doing the redection from http to https.
My SSL certificate is active
I have forced the redirection to HTTPS.
I have no firewall blocks
I have validated that the web code is correct:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} =on
RewriteCond %{HTTP_HOST} salulai.com
RewriteRule index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
- I have checked the Apache configuration on the server:
<VirtualHost *:80>
#HTTP_TO_HTTPS_START
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_PORT} !443$
RewriteRule (.*) https://%{SERVER_NAME}$1 [L,R=301]
</IfModule>
#HTTP_TO_HTTPS_END
</VirtualHost>
Could you support me with some process to identify what could be happening.
I remain attentive to your kind answer.
Regards