在PHP中,可以使用header()函数来实现跳转到指定的URL。
header()
具体步骤如下:
Location
exit()
die()
示例代码如下:
<?php // 跳转到指定URL header("Location: http://www.example.com"); exit; ?>
请注意,使用header()函数跳转之前不能有任何输出,否则会导致错误。