Wordpress/b2rss.php
Alex King 7b9938f084 account for query string in redirects
git-svn-id: https://develop.svn.wordpress.org/trunk@748 602fd350-edb4-49c9-b593-d223f7449a82
2004-01-10 00:56:48 +00:00

14 lines
385 B
PHP

<?php
$curpath = dirname(__FILE__).'/';
require_once ($curpath.'wp-config.php');
require_once ($curpath.WPINC.'/template-functions.php');
if (!empty($_SERVER["QUERY_STRING"])) {
$location = get_bloginfo('rss_url').'?'.$_SERVER["QUERY_STRING"];
}
else {
$location = get_bloginfo('rss_url');
}
header('HTTP/1.0 301 Moved Permanently');
header('Location: ' . $location . "\n");
exit;
?>