2006-11-19 07:56:05 +00:00
|
|
|
<?php
|
2008-05-25 15:50:15 +00:00
|
|
|
/**
|
2008-10-14 06:22:52 +00:00
|
|
|
* Redirects to the Comments RSS2 feed
|
|
|
|
* This file is deprecated and only exists for backwards compatibility
|
2008-05-25 15:50:15 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2005-06-10 23:15:13 +00:00
|
|
|
|
2008-10-14 06:22:52 +00:00
|
|
|
require( './wp-load.php' );
|
|
|
|
wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 );
|
2003-09-28 18:19:10 +00:00
|
|
|
|
2007-02-23 02:50:05 +00:00
|
|
|
?>
|