// la config d'apache impose la forme suivante pour REQUEST_URI :
// REQUEST_URI = /prenom.nom(/path/fichier.hmtl)?
list($username, $path) = preg_split('/\//', $_SERVER["REQUEST_URI"], 2, PREG_SPLIT_NO_EMPTY);
+$res = $globals->xdb->query(
+ "SELECT redirecturl
+ FROM auth_user_quick AS a
+ INNER JOIN aliases AS al ON (al.id = a.user_id AND (al.type='a_vie' OR al.type='alias' OR al.type='epouse'))
+ WHERR al.alias = {?}", $username);
-$result = mysql_query("SELECT redirecturl FROM auth_user_quick AS a INNER JOIN aliases AS al ON (al.id = a.user_id AND (al.type='a_vie' OR al.type='alias' OR al.type='epouse')) where al.alias= '$username'");
-if ($result and list($url) = mysql_fetch_row($result) and $url != '') {
- // on envoie un redirect (PHP met automatiquement le code de retour 302
- if (!empty($path)) {
- if (substr($url, -1, 1) == "/")
- $url .= $path;
- else
- $url .= "/" . $path;
- }
- header("Location: http://$url");
- exit();
+if ($url = $res->fetchOneCell()) {
+ $url = preg_replace('@/+$@', '', $url);
+ header("Location: http://$url/$path");
+ exit();
}
// si on est ici, il y a eu un erreur ou on n'a pas trouvé le redirect