• Resolved jelliotto10

    (@jelliotto10)


    I downloaded and activated this plugin but my issue remains. If you go to https://jeffjourneys.com, the site uses old content that isn’t updating. After publishing a new post and making changes to my site at https://jeffjourneys.com, the changes do not reflect on the unsecured site. The plugin has not merged them. Any idea how to remove or redirect the unsecured site to the https site?

Viewing 2 replies - 1 through 2 (of 2 total)
  • I hope it’s ok that I reply. jelliotto10, it looks like you haven’t set up the http to https redirect in your .htaccess file. This plugin fixes the insecure content in your website, it dose not handle redirections. The tutorial I’ve used is https://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/ and the lines you should add to your .htaccess are probably these, making sure of course that you replace https://www.yoursite.com with your actual URL:

    
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]

    It’s vital that you save a copy of the original file before making any changes since the potentiall for breaking your site is very high. If there’s a problem just switch back the original file.

    • This reply was modified 7 years, 11 months ago by Hungrynow.

    Thank you @hungrynow

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Still have two sites, http and https’ is closed to new replies.