stream_context_create ile birlikte kullanın: https://www.php.net/manual/tr/functi...ext-create.php

$context = stream_context_create(
    array(
        'http' => array(
            'follow_location' => true
        )
    )
);

$html = file_get_contents('http://www.youtube.com/@Vinesbestfun/videos', false, $context);