inital commit
This commit is contained in:
19
webroot/forum/rss.php
Normal file
19
webroot/forum/rss.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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);
|
||||
|
||||
Reference in New Issue
Block a user