saahildcom/public/gh/index.php

11 lines
270 B
PHP
Raw Normal View History

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