9 lines
190 B
PHP
9 lines
190 B
PHP
<?php
|
|
$mirrors = file_get_contents("cnc-mirrors.txt");
|
|
$mirrors_array = explode("\n", $mirrors);
|
|
|
|
$mirror = $mirrors_array[array_rand($mirrors_array, 1)];
|
|
|
|
header('Location: '. $mirror);
|
|
?>
|