2004-02-05 16:17:32 -05:00
|
|
|
<?php
|
2008-05-25 11:50:15 -04:00
|
|
|
/**
|
2010-04-19 08:03:01 -04:00
|
|
|
* Redirects to the default feed
|
2008-10-14 02:22:52 -04:00
|
|
|
* This file is deprecated and only exists for backwards compatibility
|
2008-05-25 11:50:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2004-02-05 16:17:32 -05:00
|
|
|
|
2008-10-14 02:22:52 -04:00
|
|
|
require( './wp-load.php' );
|
2010-04-19 08:03:01 -04:00
|
|
|
wp_redirect( get_bloginfo( get_default_feed() . '_url' ), 301 );
|
2010-12-09 13:02:54 -05:00
|
|
|
exit;
|
|
|
|
?>
|