Moin,
Hallo Karsten,
das Beste erscheint mir eine temporäre Umleitung via HTTP:
header($_SERVER["SERVER_PROTOCOL"].' 307 Temporary Redirect');
header('Location: http://www.die.domain/html/');
exit;
> [header()](http://de3.php.net/manual/de/function.header.php)
Ich würde es so machen:
`header('Location: http://example.org/html/', true, 307);`{:.language-php}
Nicht zu vergessen:
exit; und RFC 2616:
> Unless the request method was HEAD, the entity of the
> response SHOULD contain a short hypertext note with a hyperlink to
> the new URI(s).
Tschau,
Martin