2004-05-24 14:24:12 -04:00
|
|
|
<?php
|
2008-05-25 11:50:15 -04:00
|
|
|
/**
|
2008-10-14 02:22:52 -04:00
|
|
|
* Redirects to the RSS feed
|
|
|
|
* This file is deprecated and only exists for backwards compatibility
|
2008-05-25 11:50:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2004-05-24 14:24:12 -04:00
|
|
|
|
2008-10-14 02:22:52 -04:00
|
|
|
require( './wp-load.php' );
|
|
|
|
wp_redirect( get_bloginfo( 'rss_url' ), 301 );
|
2003-11-10 18:32:02 -05:00
|
|
|
|
2007-02-22 21:50:05 -05:00
|
|
|
?>
|