2004-02-05 22:17:32 +01:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
2010-04-19 14:03:01 +02:00
|
|
|
* Redirects to the default feed
|
2008-10-14 08:22:52 +02:00
|
|
|
* 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' );
|
2010-04-19 14:03:01 +02:00
|
|
|
wp_redirect( get_bloginfo( get_default_feed() . '_url' ), 301 );
|
2004-02-05 22:17:32 +01:00
|
|
|
|
2008-10-14 08:22:52 +02:00
|
|
|
?>
|