New on LowEndTalk? Please Register and read our Community Rules.
Redirect loop issues on cloudflare ssl ?

in General
Anyone who might have faced it and found a solution yet ? ( cloudflare said to do something in page rules )
It looks like you're new here. If you want to get involved, click one of these buttons!
Anyone who might have faced it and found a solution yet ? ( cloudflare said to do something in page rules )
Comments
What my guess is you set up a force everything over SSL on CloudFlare but ur site redirects to http
i got ssl certs from comodo too ( and in my header I've included a php code for forcing https )
if(!$_SERVER['HTTPS'] == on)
{
header("Location:https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
}
i set up on my clouflare page rules
on url : http://xxx.com/$
Forwarding : https://xxx.com
hopes it works
ill try
Has cloudflare actually enabled it on your domain yet?
got a message that it did
This should help - https://support.cloudflare.com/hc/en-us/articles/200170536-How-do-I-redirect-HTTPS-traffic-with-Flexible-SSL-and-Apache-
Else, assuming that your website is accessible via HTTPS without Cloudflare; set Cloudflare to 'Full SSL', then redirect your site to HTTPS with mod_rewrite.