简体   繁体   中英

How do you redirect a PHP page to an IMG?

I have a blog background website. We provide some HTML code that the user can insert into his page, and it has something like this:

<img src="http://example.com/img.jpg" />

Unfortunately, I have had to relocate the images from time to time. Each time I have to relocate the image, the image no longer works for the people who have put the code into their site.

I am wondering if there is a way in PHP so that I can do something like this:

<img src="http://example.com/getImage.php?id=523" />

And have the getImage.php actually redirect to the actual image URL (looked up from my database with the given ID). In this way, I can have one URL to give to the user, and if I ever need to relocate the image, I just do it in my database, and the user's background still works.

Any suggestions?

Yes. You can use the following to transparently serve a JPEG from php:

header('Content-type: image/jpeg');
readfile('/path/to/file.jpg');
exit;

Alternatively, you can just redirect to the image URL:

header('Location: /web/path/to/file.jpg');
exit;
header("Location: $url");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM