242c85ffcc
Plus old files do permanent redirect to the new ones. git-svn-id: https://develop.svn.wordpress.org/trunk@535 602fd350-edb4-49c9-b593-d223f7449a82
8 lines
246 B
PHP
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;
|
|
?>
|