使用PHP脚本进行域重定向

时间:2020-01-09 10:38:13  来源:igfitidea点击:

问题描述:如何在Apache Web服务器下使用php服务器端脚本重定向域名?

解决方法:在PHP下,您需要使用header()发送原始HTTP标头。

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

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

有关更多信息,请参见PHP重定向到另一个URL /页面脚本常见问题。