• I’m using the SSL section to secure the login and administration pages which works fine, but then there is a section of the site that I also want use SSL on. If I am logged in then it correctly forwards it to https but if I am signed out then it remains http.

    Pretty sure this worked before the most recent update.

    Any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try to paste this code below in your .htaccess file in your root location of your website. This code will redirect the http to https.

    # BEGIN WordPress
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    RewriteRule ^index\$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index [L]
    # END WordPress

    Thread Starter DamianDadswell

    (@damiandadswell)

    Thanks for the help but that is applying https to the entire website and using the plugin I would like to set it on a per content basis. It would seem that reinstalling the plugin seemed to work.

    My problem is resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘SSL per content not working’ is closed to new replies.