+
95
-

回答

301重定向PHP代码:

<?php
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: http://www.bfw.wiki");
exit;
?>

302重定向PHP代码:

<?php
header("Location: http://www.bfw.wiki");
exit;
?>

网友回复

我知道答案,我要回答