所以,假装我使用$link
变量和header()
打开www.example.com。这是我的代码:
header("Location: ".$link);
结果如下:http://reecemcmillin.com/test/www.example.com
我怎样才能让它打开www.example.com,而不是让它假装它是我服务器上的文件?
答案 0 :(得分:1)
确保$link
包含'http://':
$link = 'http://www.example.com';