saahildcom/public/gh/index.php
2025-01-30 18:04:04 -05:00

10 lines
267 B
PHP

<?php
$url = $_SERVER['REQUEST_URI'];
$parts = explode('?', $url);
$repo = $parts[1];
if($repo == '') {
header("Location: https://github.com/NeonGamerBot-QK", true, 301);
} else {
header("Location: https://github.com/NeonGamerBot-QK/" . $repo, true, 301);
}
?>