WordPress/b2rdf.php
mikelittle d0915e2322 b2rss/rdf -> wp-rss/rdf
Plus old files do permanent redirect to the new ones.


git-svn-id: http://svn.automattic.com/wordpress/trunk@535 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2003-11-10 23:32:02 +00:00

8 lines
246 B
PHP

<?php
$curpath = dirname(__FILE__).'/';
require_once ($curpath.'wp-config.php');
require_once ($curpath.$b2inc.'/b2template.functions.php');
header('HTTP/1.0 301 Moved Permanently');
header('Location: ' . get_bloginfo('rdf_url') . "\n");
exit;
?>