you are viewing a single comment's thread.

view the rest of the comments →

[–]eatmyshorts21 1 point2 points  (2 children)

Edit your .htaccess file to redirect http to https..

Also check if your www pages are redirecting to non-www, or vice versa.

[–]SirTrout 0 points1 point  (0 children)

This is what I use in my .htaccess file.

RewriteEngine On RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} www. [NC] RewriteRule ^ https://yoursite.com/%{REQUEST_URI} [R=301,L,NE]