一旦您决定使用哪个页面,然后创建该文件并输入以下文本:
<?php
header("Location: http://whereyouwant.com/to/go.html");
?>
另一种方法是在public_html目录中使用.htaccess文件。 样本内容:
Redirect 301 / http://whereyouwant.com/to/go.html
这会产生与index.php位置重定向类似的结果。
<?php
header("Location: http://whereyouwant.com/to/go.html");
?>
Redirect 301 / http://whereyouwant.com/to/go.html
这会产生与index.php位置重定向类似的结果。