first commit

This commit is contained in:
nix
2026-05-16 11:10:19 +02:00
commit 509c9b3737
172 changed files with 14496 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Redirect to the secret directory
header('Location: /secret/one.mp4'); // change to your actual directory path
exit(); // important! stops further script execution
} else {
// If someone tries to GET the script directly, redirect to home
header('Location: /');
exit();
}
?>