account for query string in redirects
git-svn-id: http://svn.automattic.com/wordpress/trunk@748 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
598c4723cf
commit
9fe4b92e20
@ -2,7 +2,13 @@
|
|||||||
$curpath = dirname(__FILE__).'/';
|
$curpath = dirname(__FILE__).'/';
|
||||||
require_once ($curpath.'wp-config.php');
|
require_once ($curpath.'wp-config.php');
|
||||||
require_once ($curpath.WPINC.'/template-functions.php');
|
require_once ($curpath.WPINC.'/template-functions.php');
|
||||||
|
if (!empty($_SERVER["QUERY_STRING"])) {
|
||||||
|
$location = get_bloginfo('rdf_url').'?'.$_SERVER["QUERY_STRING"];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$location = get_bloginfo('rdf_url');
|
||||||
|
}
|
||||||
header('HTTP/1.0 301 Moved Permanently');
|
header('HTTP/1.0 301 Moved Permanently');
|
||||||
header('Location: ' . get_bloginfo('rdf_url') . "\n");
|
header('Location: ' . $location . "\n");
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
@ -2,7 +2,13 @@
|
|||||||
$curpath = dirname(__FILE__).'/';
|
$curpath = dirname(__FILE__).'/';
|
||||||
require_once ($curpath.'wp-config.php');
|
require_once ($curpath.'wp-config.php');
|
||||||
require_once ($curpath.WPINC.'/template-functions.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('HTTP/1.0 301 Moved Permanently');
|
||||||
header('Location: ' . get_bloginfo('rss_url') . "\n");
|
header('Location: ' . $location . "\n");
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
@ -2,7 +2,13 @@
|
|||||||
$curpath = dirname(__FILE__).'/';
|
$curpath = dirname(__FILE__).'/';
|
||||||
require_once ($curpath.'wp-config.php');
|
require_once ($curpath.'wp-config.php');
|
||||||
require_once ($curpath.WPINC.'/template-functions.php');
|
require_once ($curpath.WPINC.'/template-functions.php');
|
||||||
|
if (!empty($_SERVER["QUERY_STRING"])) {
|
||||||
|
$location = get_bloginfo('rss2_url').'?'.$_SERVER["QUERY_STRING"];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$location = get_bloginfo('rss2_url');
|
||||||
|
}
|
||||||
header('HTTP/1.0 301 Moved Permanently');
|
header('HTTP/1.0 301 Moved Permanently');
|
||||||
header('Location: ' . get_bloginfo('rss2_url') . "\n");
|
header('Location: ' . $location . "\n");
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user