My website shows as secure and not secure

This morning I did a search on my website, https://www.oldcoffeeroaster.com/ I found that two versions seem to exist both secure and non secure. My website is built in RapidWeaver classic and I thought only the secure version existed. How the heck do I get rid of the non-secure version or can I?


Depending on your Hosting provider, there could be in option in your cpanel or whatever you use. If not you can put the redirect in your .htaccess file.

example snippet:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.oldcoffeeroaster.com%{REQUEST_URI} [L,R=301]

1 Like

Thank for the suggestion.

1 Like