Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q455 How do you hide the real address of a page?

You are here: irt.org | FAQ | JavaScript | Link | Q455 [ previous next ]

Say you had a page at http://somewhere.com/apage.html and say that you wanted to display a page at http://somegoddamnawfulurl/somepage.html but hide that ugly url, then in apage.html do something like:

<FRAMESET ROWS="100%,*">
<FRAME SRC="http://somegoddamnawfulurl/somepage.html">
<FRAME SRC="blank.html">
</FRAMESET>

and then in blank.html:

<BODY></BODY>

This way the location bar shows http://somewhere.com/apage.html and hides the other.

Feedback on 'Q455 How do you hide the real address of a page?'

©2018 Martin Webb