• I had a SSL cert installed on my server and am having a problem with redirecting any non-https requests to the secure pages.

    As an example, if you load this page it is secured as it should be:

    https://optimizewise.com/225-increase-in-conversions/

    but what I need is for all requests to be redirected to the https version, which is happening on my home page, but not on any pages in a subdirectory like my blog or posts:

    http://optimizewise.com/225-increase-in-conversions/

    I’ve tried a variety of ways that are supposed to accomplish this via the htaccess, but none are working. My htacess is currently below:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Help!

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Issues after going to HTTPS’ is closed to new replies.