Files
wordpress-develop/wp-feed.php
Mark Jaquith f94cd6373f Redirect ancient wp-*.php feed files. fixes #4604
git-svn-id: https://develop.svn.wordpress.org/trunk@9158 602fd350-edb4-49c9-b593-d223f7449a82
2008-10-14 06:22:52 +00:00

12 lines
220 B
PHP

<?php
/**
* Redirects to the RSS2 feed
* This file is deprecated and only exists for backwards compatibility
*
* @package WordPress
*/
require( './wp-load.php' );
wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
?>