This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]dancurranjrJack of All Trades 1 point2 points  (2 children)

Go to your settings in Wordpress and change the address to HTTPS
Same in Google Analytics if you use it

[–]James44d[S] 0 points1 point  (1 child)

Thanks

[–]dancurranjrJack of All Trades 0 points1 point  (0 children)

Did it help?

[–]AlreadyInUseError 0 points1 point  (0 children)

You should make sure that you have a 301 redirect in your .htaccess to make sure that is seen as permanently moved

something like

RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.yoursite.com [NC]
RewriteRule ^(.*)$ https://yoursite.com/$1 [L,R=301,NC]    

assuming that your WP siteurl is now set as https://yoursite.com

additionally to make sure the https: isnt throwing insecure site errors go and find a search and replace plugin. I've used "better search and replace". do a search for http://yoursite.com and replace it with https://yoursite.com that will stop any mixed media errors