一旦您決定使用哪個頁面,然后創建該文件并輸入以下文本:
<?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位置重定向類似的結果。