I have a progressive web application, built using Vue CLI 3, that is currently using the HTML 5 history mode. I have followed the documentation to add the necessary configuration to the .htaccess, however this example does not cover redirecting to HTTPS. This is what I have:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
I have followed other Stack Overflow responses on how to redirect all requests to HTTPS via .htaccess, but this results in an endless redirect loop. So what I need is to redirect non HTTPS requests to HTTPS while still honoring the index.html redirect.