So I have set the options in the my HtaccessMaker, and I added the domain name in:
Host name for HTTPS requests (without https://) www.mydomain.com
Host name for HTTP requests (without http://) www.mydomain.com
but the issue is when after creating the htacess file, when you visit: www.mydomain.com
the domain transfer in the address line to: https://www.mydomain.com/https://mydomain.com/
to fix the issue, I had to go manually and remove these line from the .htacess file:
#RewriteCond %{HTTPS} !=on [OR]
#RewriteCond %{HTTP:X-Forwarded-Proto} =http
#RewriteRule .* https://mydomain.com/$1 [R=302]
May I know what is going on.
Thanks,