On my phpBB forum board, it keeps on sometimes redirecting to the 'not secure' version of the site aka http
Any way to make it where it completely redirects you to https 'secure' url and not the other?
My coding partner already did a force https thingy already but it still is doing the same thing
My website:
https://www.hewan.org/
in .htaccess file
Code:RewriteEngine On RewriteCond %{HTTP_HOST} ^hewan.org [NC] RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]