Heim > Fragen und Antworten > Hauptteil
Wie leitet Apache 301 weiter? Ich hoffe, es gibt ein Video-Tutorial
寻觅 beyond2018-02-05 10:46:24
<?php
// 301 Moved Permanently
header("Location: /foo.php",TRUE,301);
// 302 Found
header("Location: /foo.php",TRUE,302);
header("Location: /foo.php");
// 303 See Other
header("Location: /foo.php",TRUE,303);
// 307 Temporary Redirect
header("Location: /foo.php",TRUE,307);
?>