f94cd6373f
git-svn-id: https://develop.svn.wordpress.org/trunk@9158 602fd350-edb4-49c9-b593-d223f7449a82
12 lines
220 B
PHP
12 lines
220 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 );
|
|
|
|
?>
|