Hi, all, something broke my https connection - unfortunately, I don’t know what did it.
When I visit https://www.miraverde.de I get a “not secure” (or similar) notification in Safari (in Firefox, it’s just a crossed-out lock symbol).
I’ve looked everywhere - I have not http:// references. Period.
However, if I check the page with Firefox developer view, it shows me that there are plenty of http://loads:
Oddly, the Brave browser tells me the site is secure and the certificate valid… I have cleared the cache on both Firefox + Safari… still getting a “not secure” warning.
I’m completely lost here, does anyone have any ideas?
Thank you!
Looks secure as long as you get there via an HTTPS call. https://www.miraverde.de/
However, you can still get there with a straight HTTP URL http://www.miraverde.de/
You should redirect all http calls to https using an htaccess fill.
Fantastic, thank you so much, Doug!
For some reason, the .htaccess file disappeared and the edit window in RapidWeaver was empty. I was able to roll back to the previous version within RapidWeaver, so I’m assuming something happened to it during an update. Very odd, but you saved the day!
BR Nick
Hey Rob, thank you for the URL, that site is new to me.
It generates a very specific .htaccess file. My “old” one was more generic, but seemed to do the trick (when available, LOL):
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]