hm. it appears to just be a redirection of the whole domain and it's contents, interesting nonetheless
I don't get what you're asking, lol. They've just got the /picture.jpg redirected to the home page. And if that's not what it is, then /picture.jpg doesn't exist, and they've got it set to instead of showing a 404 message, you just get redirected to the home page.
I don't get your question. Can you please explain what exactly you want to know so that we can help you?
I think he included the url just an example, not for the actual content . If you want an image to display certain things on it (watermark or whatever) you have 2 options: Static: you simply edit the image as you want (obvious ) Dynamic: you want all your images (or certain images) to display the watermark. You'll have to: - Rewrite your images via .htaccess and point them to a script (ie: PHP). domain .com/image.jpg -> domain. com/image.php?image=image.jpg - Write a script that takes the picture (image.jpg), adds the watermark and returns the new image. - Also caching the generated images would be a good idea. Needless to say, but just in case: images can't display actual text, HTML, etc. This is of course for an image file type (ie. "image/jpeg"); a url that looks like an image (.jpg) can be actually returning another file type.