forked from leftypol/leftypol
8 lines
248 B
PHP
8 lines
248 B
PHP
<?php
|
|
|
|
$files = scandir(__dir__ . '/static/spooks/', SCANDIR_SORT_NONE);
|
|
$files = array_diff($files, ['.', '..']);
|
|
|
|
$filename = $files[array_rand($files)];
|
|
header("Location: /static/spooks/$filename", true, 307);
|
|
header('Cache-Control: no-cache');
|