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