diff --git a/src/Dennis/Link/Checker/Analyzer.php b/src/Dennis/Link/Checker/Analyzer.php index c4b2da8..e2ce469 100644 --- a/src/Dennis/Link/Checker/Analyzer.php +++ b/src/Dennis/Link/Checker/Analyzer.php @@ -194,10 +194,10 @@ public function getInfo($url) { * @throws ResourceFailException */ protected function doInfoRequest($url) { - // If url is protocol neutral, force it to use https. + // If url is protocol neutral, force it to use http. if (substr( $url, 0, 2 ) === "//") { $url = ltrim($url, '//'); - $url = 'https://' . $url; + $url = 'http://' . $url; } // Only redirect 301's so cannot use CURLOPT_FOLLOWLOCATION $ch = curl_init();