HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/zipwire.komma.pro/routes/oldRoutes.php
<?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;
}