PHP转向URL代码

很简单的一段,直接转向的

PHP一般是用 header函数

例如:重定向到 http://429006.com

代码是:
<?php
header("Location:http://www.429006.com");
?>

或者:
<? header("location:index123.php"); ?>

Related Posts