diff --git a/index.php b/index.php new file mode 100644 index 0000000..e62b17a --- /dev/null +++ b/index.php @@ -0,0 +1,31 @@ + diff --git a/old-finger-url-redirect.php b/old-finger-url-redirect.php new file mode 100644 index 0000000..813d4d5 --- /dev/null +++ b/old-finger-url-redirect.php @@ -0,0 +1,21 @@ + 0)) { + $ch = '?'; + foreach ($_REQUEST as $key => $val) { + if ($key == 'user') { + continue; + } + $args .= "$ch$key=$val"; + $ch = '&'; + } +} + +$url = "https://$vhost/finger/$user$args"; +header("Location: $url", true, 301); +print("Moved Permanently
\nThis URL has moved to \n\n$url\n\n
\n"); +exit(0); +?>