Logo

[php] Codeschnipsel: Permanente Weiterleitung (301 Redirect)

Permanente Weiterleitung mit HTTP-Statuscode 301.

1
2
3
4
5
6
7
8
9
<?php
header("Status: 301 Moved Permanently");
header("Location: http://www.top-side.de");
exit;

// Alternative
header("Location: http://www.top-side.de", true, 301);
exit;
?>