If you enable debugging, we can see the error:
To do this, add to your wp-config.php, (comment out the wp_debug, false line):
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true);
define('WP_DEBUG_LOG', true);
That should tell us where the error is coming from
You can also try to enable .htaccess redirect. Normally the http url is not reachable anymore after activating Really Simple SSL, so the redirect doesn’t seem to work. enabling the .htaccess redirect in settings/ssl often helps.
Thread Starter
aldon
(@aldon)
@rogierlankhorst thank you for your quick response! i add this on .htaccess and works! thank you!
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.5.24]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
Great! thanks for the update.
Thread Starter
aldon
(@aldon)
update
The above code works only in homepage
for example http post, | https posts.
Any help?
-
This reply was modified 8 years, 9 months ago by
aldon.
That is strange. The above redirect is a generic redirect to https. Is this redirect placed above the WordPress .htaccess lines?
If not, move it to the top. If that doesn’t help, you can also try some other .htaccess redirects, as listed here:
https://really-simple-ssl.com/knowledge-base/manually-insert-htaccess-redirect-http-to-https/
Thread Starter
aldon
(@aldon)
wow! i put the code above #BEGIN WordPress and works! thank you Rogier for one more time1
That’s good to hear. Usually, if you use the .htaccess setting in settings/ssl, Really Simple SSL will put it in the right location. I think you have added this one manually?
Thread Starter
aldon
(@aldon)
Yes Rogier, i put the code manually on htaccess.