Compare commits

..

No commits in common. "c55d4ac9fc0a7dbecc6c851f24bef90bd3725519" and "7a6f27c2749ef06d7a18a5b927812213c33639b6" have entirely different histories.

View file

@ -1,10 +0,0 @@
<?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);
}
?>