From 1a0f7746667c91bb81ef8c0c391943ff8bc8781a Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Wed, 6 Jul 2011 16:55:20 +0000 Subject: catch /?fromtld=$tld requests: new tld_redirect() --- index.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 2d86636d6..750ce878d 100644 --- a/index.php +++ b/index.php @@ -7,17 +7,27 @@ require_once 'langs.inc.php'; // NOTE, this should go to the main controller in the next platform // (catching all requests) -$domain = 'mageia.org'; +$domain = 'mageia.org'; $www_domain = 'www.' . $domain; + if (G_VHOST == $domain) { + // rewrite "//mageia.org/" to "//www.mageia.org/" header ('HTTP/1.1 301 Moved Permanently'); header(sprintf('Location: http://%s%s', $www_domain, $_SERVER['REQUEST_URI'])); die; -} elseif (G_VHOST != $www_domain) { +} +elseif (isset($_GET['fromtld'])) { + // rewrite "//mageia.org/?fromtld=it" to "//www.mageia.org/it/" + tld_redirect($_GET['fromtld'], $domains_lang, $www_domain); +} +elseif (G_VHOST != $www_domain) { + // rewrite "//mageia.it/" to "//www.mageia.org/it/" domain_redirect($_SERVER['SERVER_NAME'], $domains_lang, $www_domain); } -if (isset($_GET['langs'])) { die(show_langs($langs)); } +if (isset($_GET['langs'])) { + die(show_langs($langs)); +} if (isset($_GET['flang'])) { -- cgit v1.2.1