• Resolved aebmknrl

    (@aebmknrl)


    Hi, thanks for your plugin. On my site redirects only to https when i enter to wp-admin area… the rest of my page don’t redirect… can you help me? this is my debug info:

    ** Detecting configuration **
    plugin version: 2.3.6
    Already on SSL, start detecting configuration
    ssl type: SERVER-HTTPS-ON
    — force ssl: FALSE
    Check for Mixed Content detection failed
    ** Configuring SSL **
    testing htaccess rules…
    htaccess rules test failed with error: Unknown error
    checking if .htaccess can or should be edited…
    rules already added in .htaccess.
    converting siteurl and homeurl to https

    https://ww.wp.xz.cn/plugins/really-simple-ssl/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    The test of the htaccess redirect rules seems to fail, it is possible no redirect rules were inserted.

    What redirect rules are inserted in the .htaccess? (between the really simple ssl comments).

    Thread Starter aebmknrl

    (@aebmknrl)

    Hi, thanks for answer.
    This is my .htaccess file content:

    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6]
    # END rlrssslReallySimpleSSL
    # 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
    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    After
    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6]
    Add:

    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

    Because the testing of the .htaccess redirect failed, it didn’t get inserted.

    Rogier

    Thread Starter aebmknrl

    (@aebmknrl)

    Its works! Thanks!

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

The topic ‘Only redirects wp-admin’ is closed to new replies.