3ebb27ae3e
git-svn-id: https://develop.svn.wordpress.org/trunk@16847 602fd350-edb4-49c9-b593-d223f7449a82
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
/**
|
|
* Redirects to the RSS2 feed
|
|
* This file is deprecated and only exists for backwards compatibility
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
require( './wp-load.php' );
|
|
wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
|
|
exit;
|
|
?>
|