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