<?php
// Redirect old routes
$location = '';
switch(Request::path())
{
case 'portfolio':
$location = 'cases';
break;
case 'klanten':
$location = 'referenties';
break;
case 'ikhebhonger':
$location = 'vacatures';
break;
case 'portfolio/tops-wtw-filters':
$location = 'cases/tops-wtw-filters';
break;
}
// Redirect to new location
if( ! empty($location))
{
header('location: /' . $location, true, 301);
exit;
}