<?php
// Preserve the contact/about URLs published by the previous BookTop website.
$id = isset($_GET['id']) ? (string) $_GET['id'] : '';

if ($id === '163') {
    $target = '/contact.html';
} else {
    $target = '/';
}

header('Location: ' . $target, true, 301);
exit;

