Aşağıda ki kodu deneyin hocam. Kendi sunucumda sorunsuz çalışmakta. Büyük ihtimal "CURLOPT_FOLLOWLOCATION " koymadığınızdan olabilir diye tahmin ediyorum.

<?php
$curl_options = array(
CURLOPT_RETURNTRANSFER          => true,     // return web page
CURLOPT_HEADER                  => false,    // don't return headers
CURLOPT_FOLLOWLOCATION          => true,     // follow redirects
CURLOPT_AUTOREFERER             => true,     // set referer on redirect
CURLOPT_CONNECTTIMEOUT          => '120',    // timeout on connect
CURLOPT_TIMEOUT                 => '120',    // timeout on response
CURLOPT_MAXREDIRS               => '10',     // stop after 10 redirects
CURLOPT_VERBOSE                 => true
);
$ch                                 = curl_init('https://ridvandemo.cf/');
curl_setopt_array($ch, $curl_options);
$content                            = curl_exec($ch);
echo $content.'<br/>';
curl_close($ch);
 ?>