<?php
$default_url = "/help/";

$file = exec('find -name 1.html |sort -r | head -1');
if (file_exists($file))
	header("Location:$file");
else 
	header("Location:$default_url");
?>
