如何使用PHP脚本进行域名重定向

时间:2019-11-20 08:52:01  来源:igfitidea点击:

问题

在php中,如何重定向定位一个页面?

解决方法

在php中,使用header()发送原始HTTP标头。

如果要将域重定向到其他URL,可以使用以下PHP脚本

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