merlyn's comment about the Location header is spot on, the RFC
says that a Location header should use an absolute URI. That's no disaster, with the module
URI (that comes with
LWP, AFAICT, thus, I think, most perl installs should have it — at least,
Bundle::LWP lists it), you can solve several problems at once, such as not having to have the images under the current directory (perhaps even
chdir to it before you
glob, if you have to). For example:
use URI;
print URI->new_abs('../images/t-rex.jpg', 'http://www.example.com/home
+/');
produces:
http://www.example.com/images/t-rex.jpg
You must have noticed another problem with redirection: caching. The browser thinks, because that's what the server told it, that the location of the image is permanently moved to the URL it got back once. So next time, the browser won't ask again.
You can remedy that, at least on HTTP1.1, with a "moved temporarily" status header, status code 307. That way, next time, the browser will repeat the request.
You might have to find other solutions for browsers that only understand pre-1.1 HTTP, if those still exist.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.