Hi,
Need some more info. If you remove the htaccess rewrite rules, and add
define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE );
to your wp-config.php, you can check if the http to https redirect in .htaccess is the cause.
Hi Rogier,
Thanks for your reply!
I’m not that technical, but I’ll try.
So, I just have to add:
define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE );
to my wp_config.php (on the bottom of the file)?
I was searching on my server for the .htaccess file, but can’t find it.
Do you know where its located? It should be under the public_html folder?
Thanks!
Your .htaccess should be in your public_html folder, but might be hidden. Check your ftp program settings/manual to see how you can show hidden files.
Hey!
I find the .htaccess file, and I have this code:
# 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
RewriteEngine Off
RewriteCond %{SERVER_PORT} !=443
RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.mx$ [NC]
RewriteRule ^$ https://www.mysite.mx/%{REQUEST_URI} [R,L]
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.1.18]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
What should I change?
On to off ?
I already do that, but problem not solved.
Do you know if I am doing anything else wrong?
Thanks
Also add:
define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE ); to my wp-config.php file. But nothing.
Thanks
If you leave the code in the wp-config.php, and entirely remove the rules between the begin really simple ssl and end, the redirect is disabled, and you can check if the redirect causes the issue.
Rogier
Another cause could be that your payment system has the old http link as your main link, or that the payment link is not on https. Did you check this as well?