2003-05-06 18:16:07 -04:00
|
|
|
<?php
|
2003-11-10 18:32:02 -05:00
|
|
|
$curpath = dirname(__FILE__).'/';
|
|
|
|
require_once ($curpath.'wp-config.php');
|
2003-12-18 04:36:13 -05:00
|
|
|
require_once ($curpath.WPINC.'/template-functions.php');
|
2003-11-10 18:32:02 -05:00
|
|
|
header('HTTP/1.0 301 Moved Permanently');
|
|
|
|
header('Location: ' . get_bloginfo('rss_url') . "\n");
|
|
|
|
exit;
|
|
|
|
?>
|