Files
auth-site/html/forums/rss.php
T
2018-04-29 02:36:24 -07:00

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);