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