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/Eurotools/euro-tools.nl/routes/oldRoutes.php
<?php

// Redirect old routes
$location = '';

$path = \Request::path();


// Specific routes
switch($path)
{
    case 'nl/aanbiedingen':
    case 'nl/home':
    case 'nl/home/':
        $location = '/';
        break;

    case 'nl/producten/index.cfm':
        $location = '/nl/producten/';
        break;

    case 'nl/producten/Lucht-PU-banden' :
    case 'nl/Wielen%20&%20banden/Lucht%20&%20PU%20banden' :
        $location = '/nl/wielen-banden/bok-zwenkwielen';
        break;
}


// Global routes
if($location == '' && starts_with($path, 'nl/producten/Auto/Spanbanden')) $location = '/nl/auto/spanbanden';
if($location == '' && starts_with($path, 'nl/producten/Auto/Gereedschap')) $location = '/nl/auto/luchtgereedschap';
if($location == '' && starts_with($path, 'nl/producten/Auto/')) $location = '/nl/auto';
if($location == '' && starts_with($path, 'nl/producten/Bok-en-Zwenkwielen')) $location = '/nl/wielen-banden/bok-zwenkwielen';
if($location == '' && starts_with($path, 'nl/producten/Elecktra')) $location = '/nl/gereedschap';
if($location == '' && starts_with($path, 'nl/producten/Fiets/')) $location = '/nl/vrije-tijd-hobby/fiets';

if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Tangen')) $location = '/nl/gereedschap/tangen';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Tap-en-Snijsets')) $location = '/nl/gereedschap/tap-en-snijsets';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Zagen')) $location = '/nl/gereedschap/zagen';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Circelzaagbladen')) $location = '/nl/gereedschap/zagen';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Schuren')) $location = '/nl/gereedschap/slijpenschuren';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Slijpen')) $location = '/nl/gereedschap/slijpenschuren';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Schroevendraaiers')) $location = '/nl/gereedschap/schroevendraaiers-en-bits';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Boren')) $location = '/nl/gereedschap/boren';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Diversen')) $location = '/nl/gereedschap/diversen';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Dop-en-Bitssets')) $location = '/nl/gereedschap/dopbitsets';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Hamers')) $location = '/nl/gereedschap/hamers-koevoet';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Inbus-en-Torxsets')) $location = '/nl/gereedschap/inbus-torx';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Klemmen-en-Haken')) $location = '/nl/gereedschap/klemmen-en-haken';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Ratels')) $location = '/nl/gereedschap/ratels-toebehoren';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap/Ringsteek-en-Pijpsleutelsets')) $location = '/nl/gereedschap/steekring-en-moersleutels';
if($location == '' && starts_with($path, 'nl/producten/Gereedschap')) $location = '/nl/gereedschap';
if($location == '' && starts_with($path, 'nl/producten/Ijzerwaren')) $location = '/nl/gereedschap'; // Don't know this one for sure

if($location == '' && starts_with($path, 'nl/producten/Huishoudelijk/Scharen')) $location = '/nl/vrije-tijd-hobby/messen-scharen';
if($location == '' && starts_with($path, 'nl/producten/Huishoudelijk/Zaklampen')) $location = '/nl/vrije-tijd-hobby/lampen';
if($location == '' && starts_with($path, 'nl/producten/Hang-en-Sluitwerk')) $location = '/nl/vrije-tijd-hobby';

if($location == '' && starts_with($path, 'nl/producten/Huishoudelijk/Douche-assecoires')) $location = '/nl/in-en-om-het-huis/douche-bad';
if($location == '' && starts_with($path, 'nl/producten/Hang-en-Sluitwerk')) $location = '/nl/in-en-om-het-huis';
if($location == '' && starts_with($path, 'nl/producten/Huishoudelijk')) $location = '/nl/in-en-om-het-huis';
if($location == '' && starts_with($path, 'nl/producten/Lijm-en-Tape')) $location = '/nl/in-en-om-het-huis';
if($location == '' && starts_with($path, 'nl/producten/Schildersmaterialen')) $location = '/nl/in-en-om-het-huis';
if($location == '' && starts_with($path, 'nl/producten/Tuin')) $location = '/nl/in-en-om-het-huis';

// Redirect to new location
if ( ! empty($location)) {
    header('location: ' . $location, true, 303);
    exit;
}