Hello, so I recently got SSL installed to my site. I wanted to make sure that if people go to the http version they redirect to https. I found some code, and added this:
# Redirect non-www to www
# turn mod_rewrite on
RewriteEngine On
# If https send to https://www.
RewriteCond %{HTTP_HOST} ^jackzcraft.net$ [NC]
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ https://www.jackzcraft.net/$1 [R=301,L]
# If http send to http://www.
RewriteCond %{HTTP_HOST} ^jackzcraft.net$ [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.jackzcraft.net/$1 [R=301,L]`
https://jackzcraft.net doesn’t work. https://www.jackzcraft.net does work (FYI)
That redirects fine (slowly when redirecting, don’t know why but not discussing that).
Issue is that if I’m currently in HTTPS://www ‘mode’ and I try to go to a page like for example my contact page.
If I hover over the link chrome says it will send me to https://www.jackzcraft.net/contact
but when I do that it’s in http mode, with no security (not even limited ssl).
If I turn on https for my contact page, and click the home button back, still in HTTPS mode but the same thing occurs if I go back to /contact. (if that makes sense)
I’ve tired just using <a href='contact'> <a href='/contact'> <a href="//www.jackzcraft.net/contact">
but doesn’t work
I’m guessing because chrome is saying it’s going to https, that its something happening interally
Thanks ~Jackz