d10ff2dfc5
git-svn-id: https://develop.svn.wordpress.org/trunk@14162 602fd350-edb4-49c9-b593-d223f7449a82
12 lines
240 B
PHP
12 lines
240 B
PHP
<?php
|
|
/**
|
|
* Redirects to the default feed
|
|
* This file is deprecated and only exists for backwards compatibility
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
require( './wp-load.php' );
|
|
wp_redirect( get_bloginfo( get_default_feed() . '_url' ), 301 );
|
|
|
|
?>
|