mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
1033c29346
git-svn-id: http://svn.automattic.com/wordpress/trunk@9158 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
238 B
PHP
12 lines
238 B
PHP
<?php
|
|
/**
|
|
* Redirects to the Comments RSS2 feed
|
|
* This file is deprecated and only exists for backwards compatibility
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
require( './wp-load.php' );
|
|
wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 );
|
|
|
|
?>
|