X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=htdocs%2Fwebredirect.php;h=befcdabd4b3e58411f2265bd9b2ca748e45c63c7;hb=6d69b5270243afba5d4868b2ad07761233a53ef3;hp=fd83b8d03e683a373a243f38f0d112093542983d;hpb=787bb3d745141f2f85bd947ad7dd775d2c63f908;p=platal.git diff --git a/htdocs/webredirect.php b/htdocs/webredirect.php index fd83b8d..befcdab 100644 --- a/htdocs/webredirect.php +++ b/htdocs/webredirect.php @@ -1,6 +1,6 @@ mail->alias_dom); +$path = ltrim($platal->pl_self(), '/'); +@list($username, $path) = explode('/', $path, 2); -if ($url = $res->fetchOneCell()) { - $url = preg_replace('@/+$@', '', $url); - if ($path) { - http_redirect("http://$url/$path"); - } else { - http_redirect("http://$url"); +if ($username && !is_null($user = User::getSilent($username))) { + $url = XDB::fetchOneCell('SELECT url + FROM carvas + WHERE uid = {?}', $user->id()); + if ($url) { + $url = preg_replace('@/+$@', '', $url); + if ($path) { + http_redirect("http://$url/$path"); + } else { + http_redirect("http://$url"); + } } } -header("HTTP/1.0 404 Not Found"); - +header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found'); ?> @@ -55,5 +54,7 @@ header("HTTP/1.0 404 Not Found");
Apache Server at www.carva.org Port 80
+ +