Please excuse my delay in getting back to you.

I do not propose to change the address bar: as has been noted by others, that would require a POST redirect which is not well-supported by the major web browsers.

Rather, I propose to hide the address bar entirely (if the user permits). The following example is for my virtual domain's index page:

<a href="http://www.zaimoni.com/" target="_blank" OnClick="window.open('http://www.zaimoni.com', '_blank', 'location=no,scrollbars=yes'); return false">Zaimoni.com</a>

The above works in both IE5.5 and NS4.79. Since NS6.xx works much like IE5.5, I expect it to work in both NS6.xx and NS7.

In any case, the page opens in a new window if that is supported. Resizing is problematic (I tested that variant), so I would not even consider fixed-width design. The scrollbars=yes fragment tells the web browser to use scrollbars if necessary.

If JavaScript is enabled, the address bar is completely suppressed; only the content of the title tag (the desired URL; <title>http://www.mydomain.com/mypath.pl</title>) will be visible. If JavaScript is disabled/not supported, the address bar will be visible.


In reply to Re: Re: Re: Re^2: LWP Redirection Problem by zaimoni
in thread LWP Redirection Problem by davorg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.