diff options
Diffstat (limited to 'www/index.php')
-rw-r--r-- | www/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www/index.php b/www/index.php index b8cfbf3..41b6d7a 100644 --- a/www/index.php +++ b/www/index.php @@ -627,6 +627,13 @@ require_once('../includes/lib/l10n.php'); if(!array_key_exists('signup',$_SESSION) || $_SESSION['signup']['year'] < 1900) $_SESSION['signup']['year'] = "19XX"; + + if ($id == 12) + { + $protocol = $_SERVER['HTTPS'] ? 'https' : 'http'; + $newUrl = $protocol . '://wiki.cacert.org/FAQ/AboutUs'; + header('Location: '.$newUrl, true, 301); // 301 = Permanently Moved + } if ($id == 19) { |