$map = array(
'/index.php?option=com_content&view=article&id=75&Itemid=15' => '/contacts',
'/index.php?option=com_content&view=article&id=58&Itemid=15' => '/about',
'/index.php?option=com_content&view=article&id=4&Itemid=5' => '/nice-hru',
'/index.php?option=com_content&view=article&id=5&Itemid=6' => '/nice-hru/very',
);
if (isset($map[$_SERVER['REQUEST_URI']])) {
header('Status: 301');
header(sprintf('Location: %s', $map[$_SERVER['REQUEST_URI']]));
exit();}
if (preg_match('/^\/index/', $_SERVER['REQUEST_URI'])) {
header('Status: 301');
header('Location: /');
exit();
}