<?php
if ( $_SERVER['HTTP_HOST'] == 'caselle.com' && strpos($_SERVER['REQUEST_URI'], '/help/') === 0 ) {
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $_SERVER['REQUEST_URI']);
exit;
}