]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-commentsrss2.php
Wordpress 3.1.3
[autoinstalls/wordpress.git] / wp-commentsrss2.php
1 <?php
2 /**
3  * Redirects to the Comments RSS2 feed
4  * This file is deprecated and only exists for backwards compatibility
5  *
6  * @package WordPress
7  */
8
9 require( './wp-load.php' );
10 wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 );
11 exit;
12 ?>