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