mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
99a7358baf
git-svn-id: http://svn.automattic.com/wordpress/trunk@628 1a063a9b-81f0-0310-95a4-ce76da25c4cd
8 lines
244 B
PHP
8 lines
244 B
PHP
<?php
|
|
$curpath = dirname(__FILE__).'/';
|
|
require_once ($curpath.'wp-config.php');
|
|
require_once ($curpath.WPINC.'/template-functions.php');
|
|
header('HTTP/1.0 301 Moved Permanently');
|
|
header('Location: ' . get_bloginfo('rss2_url') . "\n");
|
|
exit;
|
|
?>
|