mirror of
https://github.com/SWG-Source/auth-site.git
synced 2026-07-13 22:01:16 -04:00
20 lines
423 B
PHP
20 lines
423 B
PHP
<?php
|
|
/**
|
|
* MyBB 1.8
|
|
* Copyright 2014 MyBB Group, All Rights Reserved
|
|
*
|
|
* Website: http://www.mybb.com
|
|
* License: http://www.mybb.com/about/license
|
|
*
|
|
*/
|
|
|
|
/* Redirect traffic using old URI to new URI. */
|
|
$string = '';
|
|
if(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] != '')
|
|
{
|
|
$string .= '?'.str_replace(array("\n", "\r"), "", $_SERVER['QUERY_STRING']);
|
|
}
|
|
|
|
header('Location: syndication.php'.$string);
|
|
|