File: D:/HostingSpaces/sdo/sdoschoonmaak.nl/routes/oldRoutes.php
<?php
// Redirect old routes
$location = null;
switch(Request::path())
{
case 'index.html':
$location = '';
break;
case 'disclaimer.html':
$location = 'disclaimer';
break;
case 'certified.html':
case 'schoonmaakonderhoud.html':
$location = 'over-ons';
break;
case 'facilitaire_diensten.html':
$location = 'schoonmaak';
break;
case 'actie.html':
case 'contact.html':
$location = 'contact';
break;
}
// Redirect to new location
if( isset($location))
{
header('location: /' . $location, true, 301);
exit;
}