File: D:/HostingSpaces/SBogers10/arborconsulting.komma.pro/routes/oldRoutes.php
<?php
// Redirect old routes
$location = '';
switch(Request::path())
{
case 'cases':
case 'portfolio':
$location = 'sectoren';
break;
case 'klanten':
$location = 'referenties';
break;
case 'nl/duurzaamheid':
$location = 'nl/over-ons/duurzaamheid';
break;
case 'en/sustainability':
$location = 'en/about-us/sustainable-entrepreneurship';
break;
case 'nl/risicomanagement':
$location = 'nl/expertisegebieden/risicomanagement';
break;
case 'en/risk-management':
$location = 'en/areas-of-expertise/risk-management';
break;
case 'nl/leiderschap':
$location = 'nl/expertisegebieden/leiderschap';
break;
case 'en/leadership':
$location = 'en/areas-of-expertise/leadership';
break;
}
// Redirect to new location
if( ! empty($location))
{
header('location: /' . $location, true, 302);
exit;
}