2004-02-05 22:17:32 +01:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
2008-10-14 08:22:52 +02:00
|
|
|
* Redirects to the RSS2 feed
|
|
|
|
* This file is deprecated and only exists for backwards compatibility
|
2008-05-25 17:50:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2004-02-05 22:17:32 +01:00
|
|
|
|
2008-10-14 08:22:52 +02:00
|
|
|
require( './wp-load.php' );
|
|
|
|
wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
|
2004-02-05 22:17:32 +01:00
|
|
|
|
2008-10-14 08:22:52 +02:00
|
|
|
?>
|