Hi, I was wondering how to re-direct the user to the payment page with the https:// when they want to pay for the subscription. I have the ssl certificate setup but I can't figure out how to automatically re-direct them. Thanks.
I set it up everything in the amember folder is redirected using SSL. I used an .htaccess file Code: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} On the directories that do not require SSL I used another .htaccess file Code: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}