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