I'm encountering a challenge where converting my site to using https is creating problems with cache manifest. I get an error in chrome as follows: Application Cache Error event: Manifest fetch failed(4) http://www.bibletools.info/cache.manifest
In Safari I get a redirect loop error.
This is the htaccess code I'm using to redirect it:
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
This is what my cache manifest looks like:
CACHE MANIFEST
# February 18, 2016 v1
CACHE:
/
/assets/app.min.css?v=1.4
https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic
https://fonts.googleapis.com/css?family=Raleway:400,300,700
https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js
https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css
/assets/app.min.js?v=1.3
NETWORK:
*
HTTP://*
I understand that clearing the browser cache typically seems to solve the issue, but my users are not aware of that solution. What can I do to transition them to the secure server?