Web server configuration/openfarmtech.org/index.php
Jump to navigation
Jump to search
File Contents
<?php
if (in_array('title', $_GET) and $_GET['title']) {
header("Location: http://opensourceecology.org/wiki/".$_GET['title']."?old-url=true&".$_SERVER["QUERY_STRING"], TRUE, 301);
} else {
header("Location: http://opensourceecology.org/wiki/OLD", TRUE, 301);
}
?>