<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,QSA]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,QSA]
</IfModule>
In my case the content I gave you, it works like a charm.Hi @Fabyc you miss out the line
RewriteBase /
i tried yours but it got an error when trying to access list pages.
So @twisted1919 first code was working!
Thanks for your help tho.
Regards