Wie leitet Apache 301 weiter? Ich hoffe, es gibt ein Video-Tutorial
重定向可以使用header,也可以使用修改apache的配置文件或者添加一个.htaccess文件
<?php// 301 Moved Permanentlyheader("Location: /foo.php",TRUE,301);// 302 Foundheader("Location: /foo.php",TRUE,302);header("Location: /foo.php");// 303 See Otherheader("Location: /foo.php",TRUE,303);// 307 Temporary Redirectheader("Location: /foo.php",TRUE,307);?>
重定向可以使用header,也可以使用修改apache的配置文件或者添加一个.htaccess文件
<?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);
?>