[ad_1]
My website has an ssl certificate via Bluehost, and the landing page automatically redirects to https if a user doesn’t prepend https on the address bar. Additionally, other pages on my website are secured by https if clicked to via internal links on my website. However, if a user visits any other page on my website via the address bar without prepending https, they don’t get redirected to https. Are there any ways to fix this? I’ve tested this on multiple browsers, and all have the same issue.
[ad_2]
Not a wordpress question. Talk to Bluehost about editing your .htaccess file or httpd.conf to provide this functionality.
Htaccess – add:
`<IfModule mod_rewrite.c>`
`RewriteEngine On`
`RewriteCond %{SERVER_PORT} 80`
`RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]`
`</IfModule>`
i would suggest talking to your hosting provider. It sounds like you can resolve it by updating .htaccess file