Hallo Martin
Wenn ich das richtig verstehe in dem PHP Handbuch, müsste es also so korrekt sein:
<?php
$fehlt = array
( '/produkte/pupifax.php' => '/produkte/sm001.php',
'/Artikel/300002.shtml' => '/produkte/300002.php',
'/Artikel/avp017.shtml' => '/search.php?searchwords=Alien+vs.+Predator+Preis'
);
if (isset($fehlt[$_SERVER['REQUEST_URI']]))
{
header('Location: https://spaceart.de' . $fehlt[$_SERVER['REQUEST_URI']],TRUE,301);
exit;
}
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
?>
Liege ich da richtig?
Gruß Ingo