HTTP://BYE.ORG/INDEX.PHP
$image = 'http://hello.com/img.gif';
header('Content-type: image/gif');
readfile($image);
header('Location: http://example.com/index.php'); *
我在 index.php 上托管了上述 php 文件
基本上,当我访问 bye.org/index.php 时,我想重定向到 example.com/index.php,然后显示图像 hello.com/img.gif
如果我将带星号的行放在底部,则重定向有效,但不显示图像。如果我把它放在顶部,图像会显示,但重定向不再起作用。
可以做这两件事(首先做重定向,然后显示图像)?
谢谢